Android 内存溢出解决方案(OOM) 整理总结

  1.  在最近做的工程中发现加载的图片太多或图片过大时经常出现OOM问题,找网上资料也提供了很多方法,但自己感觉有点乱,特此,今天在不同型号的三款安卓手机上做了测试,因为有效果也有结果,今天小马就做个详细的总结,以供朋友们共同交流学习,也供自己以后在解决OOM问题上有所提高,提前讲下,片幅有点长,涉及的东西太多,大家耐心看,肯定有收获的,里面的很多东西小马也是学习参考网络资料使用的,先来简单讲下下:  
  2.    一般我们大家在遇到内存问题的时候常用的方式网上也有相关资料,大体如下几种:  
  3.    一:在内存引用上做些处理,常用的有软引用、强化引用、弱引用  
  4.    二:在内存中加载图片时直接在内存中做处理,如:边界压缩  
  5.    三:动态回收内存  
  6.    四:优化Dalvik虚拟机的堆内存分配  
  7.    五:自定义堆内存大小  
  8.    可是真的有这么简单吗,就用以上方式就能解决OOM了?不是的,继续来看...  
  9.    下面小马就照着上面的次序来整理下解决的几种方式,数字序号与上面对应:  
  10.    1:软引用(SoftReference)、虚引用(PhantomRefrence)、弱引用(WeakReference),这三个类是对heap中java对象的应用,通过这个三个类可以和gc做简单的交互,除了这三个以外还有一个是最常用的强引用  
  11.     1.1:强引用,例如下面代码:  
  12. Object o=new Object();        
  13. Object o1=o;    
  14.      上面代码中第一句是在heap堆中创建新的Object对象通过o引用这个对象,第二句是通过o建立o1到new Object()这个heap堆中的对象的引用,这两个引用都是强引用.只要存在对heap中对象的引用,gc就不会收集该对象.如果通过如下代码:  
  15. o=null;        
  16. o1=null  
  17.       heap中对象有强可及对象、软可及对象、弱可及对象、虚可及对象和不可到达对象。应用的强弱顺序是强、软、弱、和虚。对于对象是属于哪种可及的对象,由他的最强的引用决定。如下:  
  18. String abc=new String("abc");  //1        
  19. SoftReference<String> abcSoftRef=new SoftReference<String>(abc);  //2        
  20. WeakReference<String> abcWeakRef = new WeakReference<String>(abc); //3        
  21. abc=null//4        
  22. abcSoftRef.clear();//5     
  23. 上面的代码中:  
  24.     第一行在heap对中创建内容为“abc”的对象,并建立abc到该对象的强引用,该对象是强可及的。第二行和第三行分别建立对heap中对象的软引用和弱引用,此时heap中的对象仍是强可及的。第四行之后heap中对象不再是强可及的,变成软可及的。同样第五行执行之后变成弱可及的。  
  25.         1.2:软引用  
  26.                软引用是主要用于内存敏感的高速缓存。在jvm报告内存不足之前会清除所有的软引用,这样以来gc就有可能收集软可及的对象,可能解决内存吃紧问题,避免内存溢出。什么时候会被收集取决于gc的算法和gc运行时可用内存的大小。当gc决定要收集软引用是执行以下过程,以上面的abcSoftRef为例:  
  27.    
  28.     1 首先将abcSoftRef的referent设置为null,不再引用heap中的new String("abc")对象。  
  29.     2 将heap中的new String("abc")对象设置为可结束的(finalizable)。  
  30.     3 当heap中的new String("abc")对象的finalize()方法被运行而且该对象占用的内存被释放, abcSoftRef被添加到它的ReferenceQueue中。  
  31.    注:对ReferenceQueue软引用和弱引用可以有可无,但是虚引用必须有,参见:  
  32. Reference(T paramT, ReferenceQueue<? super T>paramReferenceQueue)   
  33.          被 Soft Reference 指到的对象,即使没有任何 Direct Reference,也不会被清除。一直要到 JVM 内存不足且 没有 Direct Reference 时才会清除,SoftReference 是用来设计 object-cache 之用的。如此一来 SoftReference 不但可以把对象 cache 起来,也不会造成内存不足的错误 (OutOfMemoryError)。我觉得 Soft Reference 也适合拿来实作 pooling 的技巧。   
  34.  A obj = new A();     
  35. Refenrence sr = new SoftReference(obj);     
  36.     
  37. //引用时     
  38. if(sr!=null){     
  39.     obj = sr.get();     
  40. }else{     
  41.     obj = new A();     
  42.     sr = new SoftReference(obj);     
  43. }     
  44.     1.3:弱引用  
  45.                 当gc碰到弱可及对象,并释放abcWeakRef的引用,收集该对象。但是gc可能需要对此运用才能找到该弱可及对象。通过如下代码可以了明了的看出它的作用:  
  46. String abc=new String("abc");        
  47. WeakReference<String> abcWeakRef = new WeakReference<String>(abc);        
  48. abc=null;        
  49. System.out.println("before gc: "+abcWeakRef.get());        
  50. System.gc();        
  51. System.out.println("after gc: "+abcWeakRef.get());     
  52. 运行结果:     
  53. before gc: abc     
  54. after gc: null    
  55.      gc收集弱可及对象的执行过程和软可及一样,只是gc不会根据内存情况来决定是不是收集该对象。如果你希望能随时取得某对象的信息,但又不想影响此对象的垃圾收集,那么你应该用 Weak Reference 来记住此对象,而不是用一般的 reference。    
  56.    
  57. A obj = new A();     
  58.     
  59.     WeakReference wr = new WeakReference(obj);     
  60.     
  61.     obj = null;     
  62.     
  63.     //等待一段时间,obj对象就会被垃圾回收    
  64.   ...     
  65.     
  66.   if (wr.get()==null) {     
  67.   System.out.println("obj 已经被清除了 ");     
  68.   } else {     
  69.   System.out.println("obj 尚未被清除,其信息是 "+obj.toString());    
  70.   }    
  71.   ...    
  72. }    
  73.    
  74.     在此例中,透过 get() 可以取得此 Reference 的所指到的对象,如果返回值为 null 的话,代表此对象已经被清除。这类的技巧,在设计 Optimizer 或 Debugger 这类的程序时常会用到,因为这类程序需要取得某对象的信息,但是不可以 影响此对象的垃圾收集。  
  75.    
  76.      1.4:虚引用  
  77.    
  78.      就是没有的意思,建立虚引用之后通过get方法返回结果始终为null,通过源代码你会发现,虚引用通向会把引用的对象写进referent,只是get方法返回结果为null.先看一下和gc交互的过程在说一下他的作用.  
  79.       1.4.1 不把referent设置为null, 直接把heap中的new String("abc")对象设置为可结束的(finalizable).  
  80.       1.4.2 与软引用和弱引用不同, 先把PhantomRefrence对象添加到它的ReferenceQueue中.然后在释放虚可及的对象.  
  81.    你会发现在收集heap中的new String("abc")对象之前,你就可以做一些其他的事情.通过以下代码可以了解他的作用.  
  82.    
  83. import java.lang.ref.PhantomReference;        
  84. import java.lang.ref.Reference;        
  85. import java.lang.ref.ReferenceQueue;        
  86. import java.lang.reflect.Field;        
  87.        
  88. public class Test {        
  89.     public static boolean isRun = true;        
  90.        
  91.     public static void main(String[] args) throws Exception {        
  92.         String abc = new String("abc");        
  93.         System.out.println(abc.getClass() + "@" + abc.hashCode());        
  94.         final ReferenceQueue referenceQueue = new ReferenceQueue<String>();        
  95.         new Thread() {        
  96.             public void run() {        
  97.                 while (isRun) {        
  98.                     Object o = referenceQueue.poll();        
  99.                     if (o != null) {        
  100.                         try {        
  101.                             Field rereferent = Reference.class       
  102.                                     .getDeclaredField("referent");        
  103.                             rereferent.setAccessible(true);        
  104.                             Object result = rereferent.get(o);        
  105.                             System.out.println("gc will collect:"       
  106.                                     + result.getClass() + "@"       
  107.                                     + result.hashCode());        
  108.                         } catch (Exception e) {        
  109.        
  110.                             e.printStackTrace();        
  111.                         }        
  112.                     }        
  113.                 }        
  114.             }        
  115.         }.start();        
  116.         PhantomReference<String> abcWeakRef = new PhantomReference<String>(abc,        
  117.                 referenceQueue);        
  118.         abc = null;        
  119.         Thread.currentThread().sleep(3000);        
  120.         System.gc();        
  121.         Thread.currentThread().sleep(3000);        
  122.         isRun = false;        
  123.     }        
  124.        
  125. }  
  126.    
  127.    
  128. 结果为  
  129. class java.lang.String@96354    
  130. gc will collect:class java.lang.String@96354  好了,关于引用就讲到这,下面看2  
  131.    
  132.    2:在内存中压缩小马做了下测试,对于少量不太大的图片这种方式可行,但太多而又大的图片小马用个笨的方式就是,先在内存中压缩,再用软引用避免OOM,两种方式代码如下,大家可参考下:  
  133.      方式一代码如下:  
  134. @SuppressWarnings("unused")  
  135. private Bitmap copressImage(String imgPath){  
  136.     File picture = new File(imgPath);  
  137.     Options bitmapFactoryOptions = new BitmapFactory.Options();  
  138.     //下面这个设置是将图片边界不可调节变为可调节  
  139.     bitmapFactoryOptions.inJustDecodeBounds = true;  
  140.     bitmapFactoryOptions.inSampleSize = 2;  
  141.     int outWidth  = bitmapFactoryOptions.outWidth;  
  142.     int outHeight = bitmapFactoryOptions.outHeight;  
  143.     bmap = BitmapFactory.decodeFile(picture.getAbsolutePath(),  
  144.          bitmapFactoryOptions);  
  145.     float imagew = 150;  
  146.     float imageh = 150;  
  147.     int yRatio = (int) Math.ceil(bitmapFactoryOptions.outHeight  
  148.             / imageh);  
  149.     int xRatio = (int) Math  
  150.             .ceil(bitmapFactoryOptions.outWidth / imagew);  
  151.     if (yRatio > 1 || xRatio > 1) {  
  152.         if (yRatio > xRatio) {  
  153.             bitmapFactoryOptions.inSampleSize = yRatio;  
  154.         } else {  
  155.             bitmapFactoryOptions.inSampleSize = xRatio;  
  156.         }  
  157.    
  158.     }   
  159.     bitmapFactoryOptions.inJustDecodeBounds = false;  
  160.     bmap = BitmapFactory.decodeFile(picture.getAbsolutePath(),  
  161.             bitmapFactoryOptions);  
  162.     if(bmap != null){                 
  163.         //ivwCouponImage.setImageBitmap(bmap);  
  164.         return bmap;  
  165.     }  
  166.     return null;  
  167. }  
  168.      方式二代码如下:  
  169. package com.lvguo.scanstreet.activity;  
  170.    
  171. import java.io.File;  
  172. import java.lang.ref.SoftReference;  
  173. import java.util.ArrayList;  
  174. import java.util.HashMap;  
  175. import java.util.List;  
  176. import android.app.Activity;  
  177. import android.app.AlertDialog;  
  178. import android.content.Context;  
  179. import android.content.DialogInterface;  
  180. import android.content.Intent;  
  181. import android.content.res.TypedArray;  
  182. import android.graphics.Bitmap;  
  183. import android.graphics.BitmapFactory;  
  184. import android.graphics.BitmapFactory.Options;  
  185. import android.os.Bundle;  
  186. import android.view.View;  
  187. import android.view.ViewGroup;  
  188. import android.view.WindowManager;  
  189. import android.widget.AdapterView;  
  190. import android.widget.AdapterView.OnItemLongClickListener;  
  191. import android.widget.BaseAdapter;  
  192. import android.widget.Gallery;  
  193. import android.widget.ImageView;  
  194. import android.widget.Toast;  
  195. import com.lvguo.scanstreet.R;  
  196. import com.lvguo.scanstreet.data.ApplicationData;  
  197. /**   
  198. * @Title: PhotoScanActivity.java 
  199. * @Description: 照片预览控制类 
  200. * @author XiaoMa   
  201. */  
  202. public class PhotoScanActivity extends Activity {  
  203.     private Gallery gallery ;  
  204.     private List<String> ImageList;  
  205.     private List<String> it ;  
  206.     private ImageAdapter adapter ;   
  207.     private String path ;  
  208.     private String shopType;  
  209.     private HashMap<String, SoftReference<Bitmap>> imageCache = null;  
  210.     private Bitmap bitmap = null;  
  211.     private SoftReference<Bitmap> srf = null;  
  212.       
  213.     @Override  
  214.     public void onCreate(Bundle savedInstanceState) {  
  215.         super.onCreate(savedInstanceState);  
  216.         getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,   
  217.         WindowManager.LayoutParams.FLAG_FULLSCREEN);   
  218.         setContentView(R.layout.photoscan);  
  219.         Intent intent = this.getIntent();  
  220.         if(intent != null){  
  221.             if(intent.getBundleExtra("bundle") != null){  
  222.                 Bundle bundle = intent.getBundleExtra("bundle");  
  223.                 path = bundle.getString("path");  
  224.                 shopType = bundle.getString("shopType");  
  225.             }  
  226.         }  
  227.         init();  
  228.     }  
  229.       
  230.     private void init(){  
  231.         imageCache = new HashMap<String, SoftReference<Bitmap>>();  
  232.          gallery = (Gallery)findViewById(R.id.gallery);  
  233.          ImageList = getSD();  
  234.          if(ImageList.size() == 0){  
  235.             Toast.makeText(getApplicationContext(), "无照片,请返回拍照后再使用预览", Toast.LENGTH_SHORT).show();  
  236.             return ;  
  237.          }  
  238.          adapter = new ImageAdapter(this, ImageList);  
  239.          gallery.setAdapter(adapter);  
  240.          gallery.setOnItemLongClickListener(longlistener);  
  241.     }  
  242.    
  243.       
  244.     /** 
  245.      * Gallery长按事件操作实现 
  246.      */  
  247.     private OnItemLongClickListener longlistener = new OnItemLongClickListener() {  
  248.    
  249.         @Override  
  250.         public boolean onItemLongClick(AdapterView<?> parent, View view,  
  251.                 final int position, long id) {  
  252.             //此处添加长按事件删除照片实现www.2cto.com  
  253.             AlertDialog.Builder dialog = new AlertDialog.Builder(PhotoScanActivity.this);  
  254.             dialog.setIcon(R.drawable.warn);  
  255.             dialog.setTitle("删除提示");  
  256.             dialog.setMessage("你确定要删除这张照片吗?");  
  257.             dialog.setPositiveButton("确定"new DialogInterface.OnClickListener() {  
  258.                 @Override  
  259.                 public void onClick(DialogInterface dialog, int which) {  
  260.                     File file = new File(it.get(position));  
  261.                     boolean isSuccess;  
  262.                     if(file.exists()){  
  263.                         isSuccess = file.delete();  
  264.                         if(isSuccess){  
  265.                             ImageList.remove(position);  
  266.                             adapter.notifyDataSetChanged();  
  267.                             //gallery.setAdapter(adapter);  
  268.                             if(ImageList.size() == 0){  
  269.                                 Toast.makeText(getApplicationContext(), getResources().getString(R.string.phoSizeZero), Toast.LENGTH_SHORT).show();  
  270.                             }  
  271.                             Toast.makeText(getApplicationContext(), getResources().getString(R.string.phoDelSuccess), Toast.LENGTH_SHORT).show();  
  272.                         }  
  273.                     }  
  274.                 }  
  275.             });  
  276.             dialog.setNegativeButton("取消",new DialogInterface.OnClickListener() {  
  277.                 @Override  
  278.                 public void onClick(DialogInterface dialog, int which) {  
  279.                     dialog.dismiss();  
  280.                 }  
  281.             });  
  282.             dialog.create().show();  
  283.             return false;  
  284.         }  
  285.     };  
  286.       
  287.     /** 
  288.      * 获取SD卡上的所有图片文件 
  289.      * @return 
  290.      */  
  291.     private List<String> getSD() {  
  292.         /* 设定目前所在路径 */  
  293.         File fileK ;  
  294.         it = new ArrayList<String>();  
  295.         if("newadd".equals(shopType)){   
  296.              //如果是从查看本人新增列表项或商户列表项进来时  
  297.             fileK = new File(ApplicationData.TEMP);  
  298.         }else{  
  299.             //此时为纯粹新增  
  300.             fileK = new File(path);  
  301.         }  
  302.         File[] files = fileK.listFiles();  
  303.         if(files != null && files.length>0){  
  304.             for(File f : files ){  
  305.                 if(getImageFile(f.getName())){  
  306.                     it.add(f.getPath());  
  307.                       
  308.                       
  309.                     Options bitmapFactoryOptions = new BitmapFactory.Options();  
  310.                      
  311.                     //下面这个设置是将图片边界不可调节变为可调节  
  312.                     bitmapFactoryOptions.inJustDecodeBounds = true;  
  313.                     bitmapFactoryOptions.inSampleSize = 5;  
  314.                     int outWidth  = bitmapFactoryOptions.outWidth;  
  315.                     int outHeight = bitmapFactoryOptions.outHeight;  
  316.                     float imagew = 150;  
  317.                     float imageh = 150;  
  318.                     int yRatio = (int) Math.ceil(bitmapFactoryOptions.outHeight  
  319.                             / imageh);  
  320.                     int xRatio = (int) Math  
  321.                             .ceil(bitmapFactoryOptions.outWidth / imagew);  
  322.                     if (yRatio > 1 || xRatio > 1) {  
  323.                         if (yRatio > xRatio) {  
  324.                             bitmapFactoryOptions.inSampleSize = yRatio;  
  325.                         } else {  
  326.                             bitmapFactoryOptions.inSampleSize = xRatio;  
  327.                         }  
  328.    
  329.                     }   
  330.                     bitmapFactoryOptions.inJustDecodeBounds = false;  
  331.                       
  332.                     bitmap = BitmapFactory.decodeFile(f.getPath(),  
  333.                             bitmapFactoryOptions);  
  334.                       
  335.                     //bitmap = BitmapFactory.decodeFile(f.getPath());   
  336.                     srf = new SoftReference<Bitmap>(bitmap);  
  337.                     imageCache.put(f.getName(), srf);  
  338.                 }  
  339.             }  
  340.         }  
  341.         return it;  
  342.     }  
  343.       
  344.     /** 
  345.      * 获取图片文件方法的具体实现  
  346.      * @param fName 
  347.      * @return 
  348.      */  
  349.     private boolean getImageFile(String fName) {  
  350.         boolean re;  
  351.    
  352.         /* 取得扩展名 */  
  353.         String end = fName  
  354.                 .substring(fName.lastIndexOf(".") + 1, fName.length())  
  355.                 .toLowerCase();  
  356.    
  357.         /* 按扩展名的类型决定MimeType */  
  358.         if (end.equals("jpg") || end.equals("gif") || end.equals("png")  
  359.                 || end.equals("jpeg") || end.equals("bmp")) {  
  360.             re = true;  
  361.         } else {  
  362.             re = false;  
  363.         }  
  364.         return re;  
  365.     }  
  366.       
  367.     public class ImageAdapter extends BaseAdapter{  
  368.         /* 声明变量 */  
  369.         int mGalleryItemBackground;  
  370.         private Context mContext;  
  371.         private List<String> lis;  
  372.           
  373.         /* ImageAdapter的构造符 */  
  374.         public ImageAdapter(Context c, List<String> li) {  
  375.             mContext = c;  
  376.             lis = li;  
  377.             TypedArray a = obtainStyledAttributes(R.styleable.Gallery);  
  378.             mGalleryItemBackground = a.getResourceId(R.styleable.Gallery_android_galleryItemBackground, 0);  
  379.             a.recycle();  
  380.         }  
  381.    
  382.         /* 几定要重写的方法getCount,传回图片数目 */  
  383.         public int getCount() {  
  384.             return lis.size();  
  385.         }  
  386.    
  387.         /* 一定要重写的方法getItem,传回position */  
  388.         public Object getItem(int position) {  
  389.             return lis.get(position);  
  390.         }  
  391.    
  392.         /* 一定要重写的方法getItemId,传并position */  
  393.         public long getItemId(int position) {  
  394.             return position;  
  395.         }  
  396.           
  397.         /* 几定要重写的方法getView,传并几View对象 */  
  398.         public View getView(int position, View convertView, ViewGroup parent) {  
  399.             System.out.println("lis:"+lis);  
  400.             File file = new File(it.get(position));  
  401.             SoftReference<Bitmap> srf = imageCache.get(file.getName());  
  402.             Bitmap bit = srf.get();  
  403.             ImageView i = new ImageView(mContext);  
  404.             i.setImageBitmap(bit);  
  405.             i.setScaleType(ImageView.ScaleType.FIT_XY);  
  406.             i.setLayoutParams( new Gallery.LayoutParams(WindowManager.LayoutParams.WRAP_CONTENT,  
  407.                     WindowManager.LayoutParams.WRAP_CONTENT));  
  408.             return i;  
  409.         }  
  410.     }  
  411. }  
  412.     上面两种方式第一种直接使用边界压缩,第二种在使用边界压缩的情况下间接的使用了软引用来避免OOM,但大家都知道,这些函数在完成decode后,最终都是通过java层的createBitmap来完成的,需要消耗更多内存,如果图片多且大,这种方式还是会引用OOM异常的,不着急,有的是办法解决,继续看,以下方式也大有妙用的:  
  413. 1. InputStream is = this.getResources().openRawResource(R.drawable.pic1);  
  414.      BitmapFactory.Options options=new BitmapFactory.Options();  
  415.      options.inJustDecodeBounds = false;  
  416.      options.inSampleSize = 10;   //width,hight设为原来的十分一  
  417.      Bitmap btp =BitmapFactory.decodeStream(is,null,options);  
  418. 2. if(!bmp.isRecycle() ){  
  419.          bmp.recycle()   //回收图片所占的内存  
  420.          system.gc()  //提醒系统及时回收  
  421. }  
  422. 上面代码与下面代码大家可分开使用,也可有效缓解内存问题哦...吼吼...  
  423.    
  424.     /** 这个地方大家别搞混了,为了方便小马把两个贴一起了,使用的时候记得分开使用 
  425.      * 以最省内存的方式读取本地资源的图片 
  426.      */    
  427.     public static Bitmap readBitMap(Context context, int resId){    
  428.         BitmapFactory.Options opt = new BitmapFactory.Options();    
  429.         opt.inPreferredConfig = Bitmap.Config.RGB_565;     
  430.        opt.inPurgeable = true;    
  431.        opt.inInputShareable = true;    
  432.           //获取资源图片    
  433.        InputStream is = context.getResources().openRawResource(resId);    
  434.            return BitmapFactory.decodeStream(is,null,opt);    
  435.    }  
  436.    3:大家可以选择在合适的地方使用以下代码动态并自行显式调用GC来回收内存:  
  437. if(bitmapObject.isRecycled()==false//如果没有回收    
  438.          bitmapObject.recycle();     
  439.    4:这个就好玩了,优化Dalvik虚拟机的堆内存分配,听着很强大,来看下具体是怎么一回事  
  440.      对于Android平台来说,其托管层使用的Dalvik JavaVM从目前的表现来看还有很多地方可以优化处理,比如我们在开发一些大型游戏或耗资源的应用中可能考虑手动干涉GC处理,使用 dalvik.system.VMRuntime类提供的setTargetHeapUtilization方法可以增强程序堆内存的处理效率。当然具体原理我们可以参考开源工程,这里我们仅说下使用方法: 代码如下:  
  441. private final static floatTARGET_HEAP_UTILIZATION = 0.75f;   
  442. 在程序onCreate时就可以调用  
  443. VMRuntime.getRuntime().setTargetHeapUtilization(TARGET_HEAP_UTILIZATION);  
  444. 即可  
  445.    5:自定义我们的应用需要多大的内存,这个好暴力哇,强行设置最小内存大小,代码如下:  
  446. private final static int CWJ_HEAP_SIZE = 6* 1024* 1024 ;  
  447.  //设置最小heap内存为6MB大小  
  448. VMRuntime.getRuntime().setMinimumHeapSize(CWJ_HEAP_SIZE);  
  449.     好了,文章写完了,片幅有点长,因为涉及到的东西太多了,其它文章小马都会贴源码,这篇文章小马是直接在项目中用三款安卓真机测试的,有效果,项目原码就不在这贴了,不然泄密了都,吼吼,但这里讲下还是会因为手机的不同而不同,大家得根据自己需求选择合适的方式来避免OOM,大家加油呀,每天都有或多或少的收获,这也算是进步,加油加油!  
  450.   
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值