首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

线程同步的解决思路

2013-07-20 
线程同步的package utilpublic class B {static class C {static int i 1public C(){Thread thread1

线程同步的
package util;

public class B {
static class C {
static int i = 1;
public C(){
Thread thread1 = new Thread("a") {
public void run() {
for (;;) {
C.run();
}
}
};
Thread thread2 = new Thread("c") {
public void run() {
for (;;) {
C.run();
}
}
};
thread1.start();
thread2.start();
}
public synchronized static void run() {
{
System.out.println("i = " + i+Thread.currentThread().getName());
i++;
}
}
}
public static void main(String[] args) throws Exception {
new C();
}
} 多线程 java
[解决办法]
你贴个代码出来.谁干什么啊?同步???
[解决办法]
LZ想表达什么意思呢?
[解决办法]
哈哈,楼主两位不要这样吗,会吓到楼主得

热点排行