After that, age is the next determining factor; an older person ranks over a younger person.
举一反三
- As for making introductions, there are some rules to abide by.A young person is always introduced to an older person. ( )
- After a person dies, the fmily comes togther for a funeral.Then the person's body is buried or burned.A funeral is the________ for a dead person. A: clothing B: songs C: ceremony
- 中国大学MOOC: When introducing people in a business or more formal social situation, you should introduce a younger person to an elder person.
- Memories of childhood ______ from person to person.
- class Person { String name; int age; [br][/br] public Person(String name, int age) { super(); this.name = name; this.age = age; } @Override public boolean equals(Object obj) { Person person=null; if(obj instanceof Person) person=(Person)obj; if(name.equals(person.name)&&age==person.age) return true; return false; } } class Test{ public static void main(String[] args) { Person person1 = new Person("张三", 12); Person person2 = new Person("张三", 12); System.out.println(person1.equals(person2));//运行结果是? } } 程序运行结果是什么? A: true B: false