摘要:
1、如果每个线程执行的代码相同,可以使用同一个Runnable对象,这个Runnable对象中有那个共享数据,例如:卖票系统就可以这么做!package com.thread.demo;public class SellTicktThreadShareData { public sta... 阅读全文
摘要:
线程通信 wait notifysynchronized + 同对象 才可 互斥 锁不是放在线程上的,放在共享资源内部的。wait 线程等待 notify 线程唤醒 阅读全文
摘要:
线程互斥public void method1() { synchronized(this) { ... } } 等同于 public synchronized void method1() { ... }public void method2() { synchronized(XXXX.class... 阅读全文
摘要:
1、Timer2、TimerTask3、new Timer().schedule(new TimerTask( public void run(){...} ),long/date [,long]);定时器 阅读全文
摘要:
1、实现线程的方法:1)extend Thread2)implements Runnable2、下面代码执行哪个run方法: new Thread( new Runnable(){ public void run(){1111} }){ public void run(){222} ... 阅读全文
摘要:
hibernate 阅读全文
摘要:
jxl操作excel 字体 背景色 合并单元格 列宽等 . 阅读全文
摘要:
Httpclient远程调用WebService示例(Eclipse+httpclient) 阅读全文