
Java-Thread
timeriver_wang
兴趣-爱好-习惯-价值取向的转移
war3真他妈浪费青春,平时的业余时间都被它抢占了
2009-9-14
展开
-
multi-thread(一)基础知识
Thread的五种状态: 1, new<---------new Thread() 2, runnable<----thread.start() 3, running<-----cpu轮流调度 4, blocked<-----(3种: wait pool,sleep,lock pool(等...2012-11-12 00:16:56 · 201 阅读 · 0 评论 -
Queue-生产者消费者
http://www.cnblogs.com/linjiqin/archive/2013/05/30/3108188.html原创 2015-11-03 15:15:53 · 101 阅读 · 0 评论 -
实验--线程安全(1)ArrayList
事实不像想象中的那样,实践,体会的才深。 被覆盖输出 list.size()=1937 //73个元素被覆盖// 如果size==2000,再试一次直到size <2000 p=1508,n=1510 //1509被覆盖 p=1575,n=1577 //1509被覆盖 检查全部输出: 1506-3001-1507-1508-3002-1510,发现1509被覆盖了...2014-04-18 09:04:05 · 115 阅读 · 0 评论 -
待整理
put-take-block,offer-poll-noblock-false-null Error和RuntimeException 及其子类都是未检查的异常(unchecked exceptions) 所有其他的Exception类都是检查了的异常(checked exceptions). NullPointerException,IndexOutOfBoundException, ...原创 2014-04-11 00:33:54 · 95 阅读 · 0 评论 -
multi-thread(十)CyclicBarrier
Semaphore.acquire():最多n个运行,与Executors.newFixedThreadPool( 2 )作用相似 CyclicBarrier.await(): 加到n才开始 CountDownLatch.await(): 减到0才开始 /** * CyclicBarrier.await(): Waits until all parties have invok...2014-03-10 15:51:05 · 86 阅读 · 0 评论 -
multi-thread(九)CountDownLatch
Semaphore.acquire():Acquires a permit from this semaphore, blocking until one is available 与Executors.newFixedThreadPool( 2 )作用相似 CyclicBarrier.await(): Waits until all parties have invoked await ...2014-03-10 15:49:23 · 92 阅读 · 0 评论 -
multi-thread(八)Semaphore
Semaphore.acquire():Acquires a permit from this semaphore, blocking until one is available 与Executors.newFixedThreadPool( 2 )作用相似 CyclicBarrier.await(): Waits until all parties have invoked await ...2014-03-10 15:47:46 · 80 阅读 · 0 评论 -
multi-thread(六)ReentrantLock,Condition
/** * 3个线程,依次执行 * @author timeriver.wang * @date 2014-03-10 2:06:19 PM */ public class ThreeThreadCommunication { public static void main( String[] args ) { final Bunnies bunn...2014-03-10 14:35:57 · 111 阅读 · 0 评论 -
multi-thread(七)ReentrantReadWriteLock
被加锁的对象是共享数据,不是线程 1,put,get方法入口处设置断点,debug验证:可以同时有2个读线程,但最多只能有一个写线程 2,用ReentrantReadWriteLock实现线程安全的cache /** * @author timeriver.wang * @date 2014-03-10 1:37:11 PM */ public class Re...2014-03-10 13:44:35 · 179 阅读 · 0 评论 -
Thread--Syn系列(五)
方法2014-03-06 23:34:13 · 101 阅读 · 0 评论 -
Thread--Syn系列(四)线程构造方式
/** * 构造线程的2种方式,第三个线程是混合方式 * * @author timeriver.wang * @date Mar 10, 2014 3:11:05 PM */ public class TraditionThread { public static void main( String[] args ) { /** ...2014-03-06 23:33:50 · 154 阅读 · 0 评论 -
Java核心代码(一)认识ClassLoader & Thread
1, 共5个必备线程,和1个用户线程Thread[Thread-0,5,main] //[name,priority,group.name] main group: 5-main; 5-Thread-0 system group: 10-Reference Handler, 9-Signal Dispatcher, 8-Finalizer, 5-Attach L...2013-08-05 17:03:57 · 207 阅读 · 0 评论 -
multi-thread(三)ExecutorService
1, 线程池调度线程,而不是new Thread.startI()调度 public class TestExecutorService { public static void main( String[] args ) { // 同时最多只能有2个线程 nThreads ExecutorService pool = Executors....原创 2013-07-23 10:52:12 · 118 阅读 · 0 评论 -
multi-thread(二)ThreadGroup
1、ThreadGroup,统一管理线程,比如优先级,interrupt等 public class MyThreadGroup { public static void main( String args[] ) throws Exception { ThreadGroup tg = new ThreadGroup( "My Gro...2013-01-03 17:56:43 · 88 阅读 · 0 评论 -
线程独享
http://www.cnblogs.com/peida/archive/2013/05/31/3070790.html ThreadLocal 线程独享,synchronized 方法独享。 import java.text.ParseException; public class TestSimpleDateFormat { public stat...原创 2015-11-19 14:12:35 · 217 阅读 · 0 评论