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

java 中关于空循环的事例

2012-10-10 
java 中关于空循环的例子public class T006 extends Thread {public String methodNamepublic static voi

java 中关于空循环的例子
public class T006 extends Thread {
public String methodName;

public static void method(String s) {
System.out.println(s);
while (true);
}
public synchronized void method1() {
method("非静态的method1方法");
}
public synchronized void method2() {
method("非静态的method2方法");
}
public static synchronized void method3() {
method("静态的method3方法");
}
public static synchronized void method4() {
method("静态的method4方法");
}
public void run() {
try {
getClass().getMethod(methodName).invoke(this);
} catch (Exception e) {
}
}
public static void main(String[] args) throws Exception {
T006 myThread1 = new T006();
for (int i = 1; i <= 4; i++) {
myThread1.methodName = "method" + String.valueOf(i);
new Thread(myThread1).start();
sleep(100);
}
}
}

这段代码是多线程里用反射测试对象锁和静态锁互相不会干扰的例子。这里面红色的空循环如果注释掉的话,就会让锁失效。很疑惑是什么原因。这应该是类加载的原理吧?

热点排行