欢迎来到三一办公! | 帮助中心 三一办公31ppt.com(应用文档模板下载平台)
三一办公
全部分类
  • 办公文档>
  • PPT模板>
  • 建筑/施工/环境>
  • 毕业设计>
  • 工程图纸>
  • 教育教学>
  • 素材源码>
  • 生活休闲>
  • 临时分类>
  • ImageVerifierCode 换一换
    首页 三一办公 > 资源分类 > PPT文档下载  

    【大学课件】实务与陷阱.ppt

    • 资源ID:5632533       资源大小:747.01KB        全文页数:28页
    • 资源格式: PPT        下载积分:10金币
    快捷下载 游客一键下载
    会员登录下载
    三方登录下载: 微信开放平台登录 QQ登录  
    下载资源需要10金币
    邮箱/手机:
    温馨提示:
    用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP免费专享
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    【大学课件】实务与陷阱.ppt

    ,國立交通大學資訊工程學系分散式系統實驗室Distributed Computing Systems Lab,Java Thread Pool實務與陷阱,http:/,Agenda,Threads 數量上限容量滿載的處理策略異常處理天有不測風雲,http:/,參考資料,Scott Oaks&Henry Wong(2004),Java Threads,3rd edition,OReilly.Brian Goetz et.al(2006),Java Concurrency in Practice,Addison-Wesley.,http:/,Threads數量上限,http:/,Demo 1,Native thread 上限(C/C+),http:/,Demo 2,VM thread 上限(Java),http:/,Java Concurrency Facilities,http:/,java.lang,Keyword:synchronized,java.lang,Java Threads,1st Way,http:/,n,main,Java Threads,2nd Way,http:/,Thread,main,Thread 容量滿載,Win32 APICreateThread()return NULLJavaThrow java.lang.OutOfMemoryError,http:/,容量滿載處理策略,http:/,http:/,MyWorker,main,Demo 3,固定容量的 Thread Pool,http:/,newFixedThreadPool,public class TestThreadPool private static final int POOL_SIZE=10;private static final int MAX_COUNT=10000;public static void main(String args)Executor pool=Executors.newFixedThreadPool(POOL_SIZE);for(int i=0;i MAX_COUNT;+i)pool.execute(new ExecutorDemo(i);class ExecutorDemo implements Runnable public ExecutorDemo(int sn)/*/public void run()/*/,http:/,Executors 懶人包,FixedThreadPool固定數量彈性不足CachedThreadPool自動伸縮(0Integer.MAX_VALUE)無法處理瞬間巨量,http:/,Demo 4,兼顧並行性與系統負載的 Thread Pool,http:/,ThreadPool DIY!,public class TestThreadPool private static final int MAX_POOL_SIZE=10;private static final int CORE_POOL_SIZE=5;private static final long THREAD_KEEPALIVE_TIME=60;private static final int QUEUE_SIZE=3;/public static void main(String args)Executor pool=Executors.newThreadPoolExecutor(CORE_POOL_SIZE,MAX_POOL_SIZE,THREAD_KEEPALIVE_TIME,TimeUnit.SECONDS,new ArrayBlockingQueue(QUEUE_SIZE),new ThreadPoolExecutor.CallerRunsPolicy();/*/,http:/,異常處理,http:/,Demo 5,當 Thread Pool 遇見 exception,http:/,他抓得住我?,public class TestThreadPool/public static void main(String args)Executor pool=Executors.newFixedThreadPool(POOL_SIZE);for(int i=0;i MAX_COUNT;+i)try pool.execute(new ExecutorDemo(i);catch(Throwable e)/*/class ExecutorDemo implements Runnable public ExecutorDemo(int sn)/*/public void run()throw new RuntimeException();,http:/,Demo 6,除錯版:安裝自訂的 Thread.UncaughtExceptionHandler,http:/,安裝自訂的 ThreadFactory,public class TestThreadPool/public static void main(String args)Executor pool=Executors.newThreadPoolExecutor(CORE_POOL_SIZE,MAX_POOL_SIZE,THREAD_KEEPALIVE_TIME,TimeUnit.SECONDS,new ArrayBlockingQueue(QUEUE_SIZE),new SafeThreadFactory(),new ThreadPoolExecutor.CallerRunsPolicy();/*/class SafeThreadFactory implements ThreadFactory/*下一頁*/,http:/,自訂 UncaughtExceptionHandler,class SafeThreadFactory implements ThreadFactory Overridepublic Thread newThread(Runnable r)Thread thread=new Thread(r);thread.setUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler()Overridepublic void uncaughtException(Thread t,Throwable e)/);return thread;,http:/,Demo 7,懶人版:不讓 thread 丟出 exception,http:/,Thread 防呆策略,class ErrorProofThread implements Runnable/public void run()try/*main program logic here*/catch(Throwable ignore)/you can do nothing here,http:/,天有不測風雲,http:/,HeartbeatWatchdog,http:/,Any Questions?,http:/,

    注意事项

    本文(【大学课件】实务与陷阱.ppt)为本站会员(sccc)主动上传,三一办公仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知三一办公(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    备案号:宁ICP备20000045号-2

    经营许可证:宁B2-20210002

    宁公网安备 64010402000987号

    三一办公
    收起
    展开