ThreadPoolExecutor当中的默认线程工厂咋有点看不懂呢

小透明答一波:
group = (s != null)? s.getThreadGroup():Thread.currentThread().getThreadGroup(); 【ThreadPoolExecutor当中的默认线程工厂咋有点看不懂呢】 不好说,文字表达能力不好还是上代码得了,上述代码可以等同下述代码~~~
group=null;if(s!=null){ group=s.getThreadGroup();}else{ group=Thread.currentThread().getThreadGroup();}工厂用的简化单例取线程,如果是这个问题不懂的话可以看看GOF写的设计模式。

■网友
哪里不懂?
■网友
条件表达式?问题描述的不清楚呀...


    推荐阅读