Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> Android 弱引用和軟引用,android引用和軟

Android 弱引用和軟引用,android引用和軟

編輯:關於android開發

Android 弱引用和軟引用,android引用和軟


軟引用 和 弱引用   

    1.  SoftReference<T>:軟引用-->當虛擬機內存不足時,將會回收它指向的對象;需要獲取對象時,可以調用get方法。

    2.  WeakReference<T>:弱引用-->隨時可能會被垃圾回收器回收,不一定要等到虛擬機內存不足時才強制回收。要獲取對象時,同樣可以調用get方法。

    3. WeakReference一般用來防止內存洩漏,要保證內存被虛擬機回收,SoftReference多用作來實現緩存機制(cache);

 

實例  SoftReference

如果一個對象只具有軟引用,那就類似於可有可無的生活用品。如果內存空間足夠,垃圾回收器就不會回收它,如果內存空間不足了,就會回收這些對象的內存。只要垃圾回收器沒有回收它,該對象就可以被程序使用。軟引用可用來實現內存敏感的高速緩存。

比如在圖片加載框架中,通過弱引用來實現內存緩存。

package com.stevenhu.lit;

import java.lang.ref.SoftReference;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;

import android.graphics.drawable.Drawable;
import android.os.Handler;
import android.os.Message;

//實現圖片異步加載的類
public class AsyncImageLoader 
{
	//以Url為鍵,SoftReference為值,建立緩存HashMap鍵值對。
	private Map<String, SoftReference<Drawable>> mImageCache = 
		new HashMap<String, SoftReference<Drawable>>();
	
	//實現圖片異步加載
	public Drawable loadDrawable(final String imageUrl, final ImageCallback callback)
	{
		//查詢緩存,查看當前需要下載的圖片是否在緩存中
		if(mImageCache.containsKey(imageUrl))
		{
			SoftReference<Drawable> softReference = mImageCache.get(imageUrl);
			if (softReference.get() != null)
			{
				return softReference.get();
			}
		}
		
		final Handler handler = new Handler()
		{
			@Override
			public void dispatchMessage(Message msg) 
			{
				//回調ImageCallbackImpl中的imageLoad方法,在主線(UI線程)中執行。
				callback.imageLoad((Drawable)msg.obj);
			}
		};
		
		/*若緩存中沒有,新開辟一個線程,用於進行從網絡上下載圖片,
		 * 然後將獲取到的Drawable發送到Handler中處理,通過回調實現在UI線程中顯示獲取的圖片
		 */
		new Thread()
		{		
			public void run() 
			{
				Drawable drawable = loadImageFromUrl(imageUrl);
				//將得到的圖片存放到緩存中
				mImageCache.put(imageUrl, new SoftReference<Drawable>(drawable));
				Message message = handler.obtainMessage(0, drawable);
				handler.sendMessage(message);
			};
		}.start();
		
		//若緩存中不存在,將從網上下載顯示完成後,此處返回null;
		return null;
		
	}
	
	//定義一個回調接口
	public interface ImageCallback
	{
		void imageLoad(Drawable drawable);
	}
	
	//通過Url從網上獲取圖片Drawable對象;
	protected Drawable loadImageFromUrl(String imageUrl)
	{
		try {
			return Drawable.createFromStream(new URL(imageUrl).openStream(),"debug");
		} catch (Exception e) {
			// TODO: handle exception
			throw new RuntimeException(e);
		}
	}
}

    

弱引用(WeakReference) 

只具有弱引用的對象擁有更短暫的生命周期。在垃圾回收器線程掃描它 所管轄的內存區域的過程中,一旦發現了只具有弱引用的對象,不管當前內存空間足夠與否,都會回收它的內存。不過,由於垃圾回收器是一個優先級很低的線程, 因此不一定會很快發現那些只具有弱引用的對象。 

WeakReference<User> sr = new WeakReference<User>(new User());

  

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved