日期:2014-05-20 浏览次数:20709 次
public class JavaTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("main start");
MyThread thread = new MyThread();
Thread a = new Thread(thread, "A");
Thread b = new Thread(thread, "B");
a.start();
b.start();
System.out.println("main end");
}
}
class MyThread implements Runnable {
private int i = 0;
@Override
public void run() {
// TODO Auto-generated method stub
System.out.println(Thread.currentThread().getName() + " run enter i = " + i);
synchronized(this){
System.out.println(Thread.currentThread().getName() + " synchronized >>>>>>> i = " + i);
for (; i < 5; i++) {
//for (i = 0; i < 5; i++) {
System.out.println(Thread.currentThread().getName() + " synchronized loop " + i);
}
}
System.out.println(Thread.currentThread().getName() + " run exit");
}
}
package com.cybersoft.dsan.test;
public class JavaTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("main start");
MyThread aa = new MyThread("A");
MyThread bb = new MyThread("B");
Thread a = new Thread(aa);
Thread b = new Thread(bb);
a.start();
b.start();
System.out.println("main end");
}
}
class MyThread implements Runnable {
private String threadName;
public MyThread(String threadName){
this.threadName = threadName;
}
private int i = 0;
@Override
public void run() {
// TODO Auto-generated method stub
System.out.println(threadName + " run enter i = "
+ i);
synchronized (this) {
System.out.println(threadName
+ " synchronized >>>>>>> i = " + i);