Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

Android开发:如何安全的中止一个自定义线程Thread

$
0
0

经研究,我推荐这种写法:

/*自定义线程*/
	class MyThread implements Runnable{

		public void run() {
			// TODO Auto-generated method stub
 //  定义自己的变量
                         while(!Thread.currentThread().isInterrupted()){
				try { 
                                        doSomeThingNeed();//需要更新的操作   
                                        //休眠控制最大帧率为每秒3绘制30次
					Thread.sleep(30);
					
				} catch (Exception e) {
					// TODO: handle exception
					Log.v(tag2, "DrawSurfaceView:绘制失败...");
					Thread.currentThread().interrupt();
				}	
				
				
				
			}
			
		}

这种写法比http://blog.csdn.net/yanzi1225627/article/details/8581200用 一个标志位的方法 停止线程更方便!

作者:yanzi1225627 发表于2013-2-16 0:37:48 原文链接
阅读:60 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>