zoukankan      html  css  js  c++  java
  • 8888888888

    1 package Hzy; 2 3 public class StaticDemo05 { 4 public static void main(String args[]) { 5 new StaticDemo05().fun() ; 6 } 7 public void fun() { 8 System.out.println("Hello World!!!"); 9 } 10 }

    复制代码
    复制代码
    package kzhw;
    
    
    
        class Person {
            private String name;
            private int age;
            public Person(String name,int age) {
                this.name = name;
                this.age = age;
            }
            
            
                
            public boolean compare(Person per) {
                if(this.name.equals(per.name)&&this.age==per.age) {
                    return true;
                }else {
                        return false;
                }
            }
                    
            public String getName() {
                return this.name;
            }
    
            public int getAge() {
                return this.age;
            }
        }
            public class CompareDemo03 {
                public static void main(String args[]) {
                    Person per1 = new Person("张三",30);
                    Person per2 = new Person("张三",30);    
                    if(per1.getName().equals(per2.getName())&&per1.getAge()==per2.getAge()) {
                        System.out.println("是同一个人!");
                    }
                }
            }
    
            
    
            
        
    复制代码

    复制代码
    package kzhw;
    
    class Person{
        private String name;
        private int age;
        public Person(String name,int age) {
            this.name=name;
            this.age=age;
        }
        public String getName() {
            return this.name;
        }
        public int getAge() {
            return this.age;
        }
    }
    public class CompareDemo02 {
        public static void main(String args[]) {
            Person per1 = new Person("张三",30);
            Person per2 = new Person("张三",30);
            if(per1.getName().equals(per2.getName())&&per1.getAge()==per2.getAge()) {
                System.out.println("是同一个人!");
            }
        }
    }
    复制代码

    复制代码
    package kzhw;
    
    class Person{
        private String name;
        private int age;
        public Person(String name,int age) {
            this.name=name;
            this.age=age;
        }
        public void fun(Person temp) {
            temp.name="李四";
            temp.age=33;
        }
        public String getName() {
            return this.name;
        }
        public int getAge() {
            return this.age;
        }
    public class CompareDemo01 {
        public static void main(String args[]) {
            Person per = new Person("张三",30);
            per.fun(per);
            System.out.println(per.getName()+"-->"+per.getAge());
        }
    }
    复制代码

  • 相关阅读:
    IIS的各种身份验证详细测试
    HTTP Error 401.3 Unauthorized Error While creating IIS 7.0 web site on Windows 7
    C/S and B/S
    WCF ContractFilter mismatch at the EndpointDispatcher exception
    Configure WCF
    Inheritance VS Composition
    Unhandled Error in Silverlight Application, code 2103 when changing the namespace
    Java RMI VS TCP Socket
    Principles Of Object Oriented Design
    Socket处理发送和接收数据包,一个小实例:
  • 原文地址:https://www.cnblogs.com/kuangzhiwei/p/7899595.html
Copyright © 2011-2022 走看看