static A getAndClearThreadLocal(ThreadLocal tl) { A a = tl.get(); tl.set(null); ret a; }