摘要:
package thread.test; public class ThreadLocalDemo { /** * ThreadLocal变量,每个线程都有一个副本,互不干扰 */ private static final ThreadLocal<String> THREAD_LOCAL = new 阅读全文
摘要:
摘录加总结 (1)传统的单例模式的双检锁 public class Singleton { private static Singleton sInstance; public static Singleton getInstance() { if (sInstance == null) {//① 阅读全文
摘要:
在JAVA中,异常子类必须在它们任何父类之前使用,因为运用父类的catch语句将捕获该类型及其所有子类类型的异常。这样,后面运行子类的catch语句将永远不会到达。而且,Java中不能到达的代码是一个错误。 阅读全文