package com.skcc.mthread;
public class MuiltThread {
private static int num = 0;
public MuiltThread() {
// TODO Auto-generated constructor stub
}
/****
* synchronized void printNum(String tag) 代表 synchronized锁定的MuiltThread实例对象锁(m1,m2两者间互不影响)
* static synchronized void printNum(String tag) 代表synchronized 竞争的是MuiltThread类锁
*
* ****/
public static synchronized void printNum(String tag) {
try {
if(tag.equals("a")) {
num = 100;
System.out.println("tag a,num 100 set over.");
//Thread.sleep(1000);
}
else {
num=200;
System.out.println("tag b,num 200 set over.");
}
System.out.println("tag is " + tag + " num is "+ num);
} catch (Exception e) {
// TODO: handle exception
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
MuiltThread m1 = new MuiltThread();
MuiltThread m2 = new MuiltThread();
Thread t1 = new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
//m1.printNum("a");
MuiltThread.printNum("a");
}
});
Thread t2 = new Thread(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
// m2.printNum("b");
MuiltThread.printNum("b");
}
});
t1.start();
t2.start();
}
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。