zoukankan      html  css  js  c++  java
  • 11.06第十次作业

     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 Hzy;
    
    
    
        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 Hzy;
    
    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 Hzy;
    
    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());
        }
    }

  • 相关阅读:
    从太空到地球某个位置的轨迹录像制作 | Earth Zoom in/out Tutorial (Record Video)
    DNA replication timing数据库
    探索ENCODE数据库 | Encyclopedia of DNA Elements
    第100天: 三木板模型算法项目实战
    第99天:UDP 编程
    第98天:图像库 PIL 实例—验证码去噪
    第97天:图像库 PIL(二)
    第96天:图像库 PIL(一)
    第95天:StringIO & BytesIO
    第94天:数据分析之 pandas 初步
  • 原文地址:https://www.cnblogs.com/huangzongyu/p/7800452.html
Copyright © 2011-2022 走看看