题目内容

public class Person { private String name, comment; private int age; public Person(String n, int a, String c) { name = n; age = a; comment = c; } public boolean equals(Object o) { if(! (o instanceof Person)) return false; Person p = (Person)o; return age == p.age && name.equals(p.name); } } What is the appropriate definition of the hashCode method in class Person?()

A. return super.hashCode();
B. return name.hashCode() + age * 7;
C. return name.hashCode() + comment.hashCode() /2;
D. return name.hashCode() + comment.hashCode() / 2 - age * 3;

查看答案
更多问题

弗洛伊德()派以人的性机能发展状态和表现方式为标志划分人生阶段。

简述教育与生态诊断的主要内容。

简述农村社区健康教育策略方法。

皮亚杰认为,儿童的道德判断是()

A. 从不可逆发展到可逆
B. 从前世俗水平发展到世俗水平
C. 从自律发展到他律
D. 从他律发展到自律

答案查题题库