java 中synchronized方法的参数问题 5
代码如下:packagethead_test3;/***Program的摘要说明*/publicclassmultithread{publicstaticvoidmain...
代码如下:
package thead_test3;
/**
* Program 的摘要说明
*/
public class multithread
{
public static void main(String[] args)
{
mythread mt = new mythread();
new Thread(mt).start();
new Thread(mt).start();
new Thread(mt).start();
new Thread(mt).start();
}
}
class mythread extends Thread
{
int index = 100;
Object obj = new Object();
public void run()
{
while (true)
{
synchronized (obj)
{
if (index > 0)
{
try
{
Thread.sleep(10);
System.out.println(Thread.currentThread().getName() + "卖了第" + index + "张饭票");
index--;
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
if (index == 0)
{
System.exit(0);
}
}
}
}
synchronized方法的参数obj和this都是什么意思啊 展开
package thead_test3;
/**
* Program 的摘要说明
*/
public class multithread
{
public static void main(String[] args)
{
mythread mt = new mythread();
new Thread(mt).start();
new Thread(mt).start();
new Thread(mt).start();
new Thread(mt).start();
}
}
class mythread extends Thread
{
int index = 100;
Object obj = new Object();
public void run()
{
while (true)
{
synchronized (obj)
{
if (index > 0)
{
try
{
Thread.sleep(10);
System.out.println(Thread.currentThread().getName() + "卖了第" + index + "张饭票");
index--;
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
}
if (index == 0)
{
System.exit(0);
}
}
}
}
synchronized方法的参数obj和this都是什么意思啊 展开
1个回答
展开全部
synchronized是对象锁,而不是方法.obj是Object的一个实例,相当于一个标示.
synchronized (obj){
if (index > 0){
try{
Thread.sleep(10);
System.out.println(Thread.currentThread()
.getName() + "卖了第" + index + "张饭票");
index--;
}catch(InterruptedException e){
e.printStackTrace();
}
}
}
这段代码的意思是说被synchronized (obj){ }包围的代码是同步的,同一时间内只能由一个线程使用.
synchronized (obj){
if (index > 0){
try{
Thread.sleep(10);
System.out.println(Thread.currentThread()
.getName() + "卖了第" + index + "张饭票");
index--;
}catch(InterruptedException e){
e.printStackTrace();
}
}
}
这段代码的意思是说被synchronized (obj){ }包围的代码是同步的,同一时间内只能由一个线程使用.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询