标签: java
我们说我有以下内容:
AtomicReference < String> tmpRef_nullStr = new AtomicReference < String>(null);
和
AtomicReference < String> tmpRef_helloStr = new AtomicReference < String>("hello");
有没有办法检查这些AtomicReferences的类型,以便在两种情况下都返回一种String类型?