摘要:
一、源码 1、属性 private final int threadLocalHashCode = nextHashCode(); 获得hashcode private static AtomicInteger nextHashCode = new AtomicInteger(); 定义原子操作的i 阅读全文
摘要:
一、源码 1、属性 private final ThreadGroup parent; 父线程组对象 String name; 线程组名称 int maxPriority; 最高优先级 boolean destroyed; 是否已销毁 boolean daemon; 是否是守护线程 boolean 阅读全文
摘要:
一、源码 public final native Class<?> getClass(); 获得运行时的类 public native int hashCode(); 获得hash码 public boolean equals(Object obj) { return (this == obj); 阅读全文