String str=new String("abc");                                     // 强引用  
	SoftReference<String> softRef=new SoftReference<String>(str);  
弱引用WeakReference
- 比软引用更加弱,当垃圾收集器回收时就会被回收。
 
	String str=new String("abc");                                     // 强引用  
	SoftReference<String> softRef=new SoftReference<String>(str);