黑马程序员技术交流社区

标题: java反射学习代码 [打印本页]

作者: 李能甫    时间: 2015-3-31 22:12
标题: java反射学习代码
  1. package javaAdvanced;

  2. /**
  3. * 类的描述信息
  4. * 反射信息的测试类
  5. *
  6. * @author cuiH
  7. * Date: 13-12-2
  8. */
  9. public class ReflectPoint {
  10.     private int x;
  11.     public int y;

  12.     public String str1 = "football";
  13.     public String str2 = "basketball";
  14.     public String str3 = "pingPang";

  15.     public ReflectPoint(int x, int y) {
  16.         this.x = x;
  17.         this.y = y;
  18.     }

  19.     @Override
  20.     public String toString() {
  21.         return super.toString();
  22.     }

  23.     @Override
  24.     public boolean equals(Object o) {
  25.         if (this == o) return true;
  26.         if (!(o instanceof ReflectPoint)) return false;

  27.         ReflectPoint that = (ReflectPoint) o;

  28.         if (x != that.x) return false;
  29.         if (y != that.y) return false;

  30.         return true;
  31.     }

  32.     @Override
  33.     public int hashCode() {
  34.         int result = x;
  35.         result = 31 * result + y;
  36.         return result;
  37.     }
  38. }
复制代码

作者: 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