Android中开启一个空线程会占用多少内存

Android开发中,开启一个线程会占用多少内存空间?这个问题我一直没有测试过,以前在网上看见别人说需要1M内存(可能是该网友包含了很多数据),今天对这个问题做了一个测试。为了不影响测试,我使用空线程(线程不做任何事情,也不包含任何数据)。

先贴上测试代码

thread_occupy_memory.xml

[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.     <Button android:id="@+id/start_thread"  
  7.         android:layout_width="fill_parent"  
  8.         android:layout_height="wrap_content"  
  9.         android:text="开启一个新线程" />  
  10.     <TextView  
  11.         android:layout_width="fill_parent"  
  12.         android:layout_height="wrap_content"  
  13.         android:textSize="20dp"  
  14.         android:text="内存" />  
  15.     <TextView android:id="@+id/show_memoty"  
  16.         android:layout_width="fill_parent"  
  17.         android:layout_height="fill_parent" />  
  18. </LinearLayout>  

[java]  view plain copy
  1. import java.util.ArrayList;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.os.Handler;  
  6. import android.os.Message;  
  7. import android.view.View;  
  8. import android.view.View.OnClickListener;  
  9. import android.widget.TextView;  
  10.   
  11. /** 
  12.  * 测试开启一个空线程会占用多少内存 
  13.  * @author DaveeChen 
  14.  */  
  15. public class ThreadOccupyMemoryActivity extends Activity {  
  16.     private TextView mTextView;  
  17.     private ArrayList<Object> threadList = new ArrayList<Object>();  
  18.     @Override  
  19.     public void onCreate(Bundle savedInstanceState) {  
  20.         super.onCreate(savedInstanceState);  
  21.         this.setContentView(R.layout.thread_occupy_memory);  
  22.   
  23.         init();  
  24.     }  
  25.       
  26.     private void init() {  
  27.         this.findViewById(R.id.start_thread).setOnClickListener(new OnClickListener() {  
  28.             public void onClick(View v) {  
  29.                 MyThread mMyThread = new MyThread();  
  30.                 threadList.add(mMyThread);  
  31.                 mMyThread.start();  
  32.             }  
  33.         });  
  34.   
  35.         mTextView = (TextView)this.findViewById(R.id.show_memoty);  
  36.         mTextView.setText(analyzeMemory());  
  37.     }  
  38.   
  39.     private String analyzeMemory() {  
  40.         Runtime mRuntime = Runtime.getRuntime();  
  41.         long usedMemory = mRuntime.totalMemory() - mRuntime.freeMemory();  
  42.         String result = "线程数量:"+threadList.size()  
  43.                 +"\nUsedMemory:"+usedMemory  
  44.                 +"bytes;\n"  
  45.                 +"---------------------------------\n";  
  46.         return result;  
  47.     }  
  48.   
  49.     private Handler mHandler = new Handler() {  
  50.         @Override  
  51.         public void handleMessage(Message msg) {  
  52.             if (msg.what == 1) {  
  53.                 mTextView.setText(msg.obj.toString() + mTextView.getText());  
  54.             }  
  55.         }  
  56.     };  
  57.   
  58.     private class MyThread extends Thread {  
  59.         @Override  
  60.         public void run() {  
  61.             mHandler.sendMessage(mHandler.obtainMessage(1, analyzeMemory()));  
  62.             while(true) {//让线程保持一直运行  
  63.                   
  64.             }  
  65.         }  
  66.     }  
  67. }  


  

在启动线程之前,已使用内存3015936字节(大约3015K)。启动一个线程后,内存已使用3030904(大约3030K),说明开启第一个线程使用了大约15K内存;

当开启了10个线程之后,内存已使用3071064(大约3071K),说明开启10个空线程大约用了55K内存。


我也测试了AsyncTask,占用内存和Thread差不多

[java]  view plain copy
  1. private class MyAsyncTask extends AsyncTask<Void,Void,Void> {  
  2.         @Override  
  3.         protected Void doInBackground(Void... params) {  
  4.             mHandler.sendMessage(mHandler.obtainMessage(1, analyzeMemory()));  
  5.             while(true) {//让线程保持一直运行  
  6.                   
  7.             }  
  8.             //return null;  
  9.         }  
  10.     }  
from:  https://i-blog.csdnimg.cn/blog_migrate/70e39420fd6789099b5b008450f722cc.png
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值