黑马程序员技术交流社区
标题:
java反射学习代码
[打印本页]
作者:
李能甫
时间:
2015-3-31 22:12
标题:
java反射学习代码
package javaAdvanced;
/**
* 类的描述信息
* 反射信息的测试类
*
* @author cuiH
* Date: 13-12-2
*/
public class ReflectPoint {
private int x;
public int y;
public String str1 = "football";
public String str2 = "basketball";
public String str3 = "pingPang";
public ReflectPoint(int x, int y) {
this.x = x;
this.y = y;
}
@Override
public String toString() {
return super.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof ReflectPoint)) return false;
ReflectPoint that = (ReflectPoint) o;
if (x != that.x) return false;
if (y != that.y) return false;
return true;
}
@Override
public int hashCode() {
int result = x;
result = 31 * result + y;
return result;
}
}
复制代码
作者:
lwj123
时间:
2015-3-31 22:55
你发这代码是有什么意图?
作者:
小亮smile
时间:
2015-3-31 23:16
非常好!!!赞一个 。
作者:
李能甫
时间:
2015-4-1 09:26
lwj123 发表于 2015-3-31 22:55
你发这代码是有什么意图?
仅供学习交流,哪有什么意图呢?
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2