A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class Bank
{
     private int sum;
     Object obj = new Object();
     public synchronized void add(int n)
     {
        
         sum = sum + n;
         System.out.println("sum="+sum);
        
     }
}
class Cus implements Runnable
{
     private Bank b = new Bank();
     public void run()
     {
        for(int x=0;x<3;x++)
        {
            b.add(100);
        }
     }
}
class BankDemo
{
     public static void main(String[] args)
     {
         Cus c = new Cus();
         Thread t1 = new Thread(c);
         Thread t2 = new Thread(c);
         t1.start();
         t2.start();
     }
}
运行结果为:
sum=100
sum=200
sum=300
sum=400
sum=500
sum=600

我想问的是把Cus c这个对象传进Thread构造函数里,执行时不是只有一个Cus c 对象吗?for(int x=0;x<3;x++)
应该只能执行3次,不论多少个线程,输出结果应该是
sum=100
sum=200
sum=300

前面有个TicketDemo2,里面有100张票,不论多少线程访问都不会超过100,顺便贴下代码
class Ticket implements Runnable
{
    private  int tick = 100;
    Object obj = new Object();
    public void run()
    {
        while(true)
        {
           synchronized(obj)
           {
            if(tick>0)
            {
                         System.out.println(Thread.currentThread().getName()+"sale:"+ tick--);

            }
           }
        }
    }
}
class TicketDemo2
{
    public static void main(String[] args)
    {
       Ticket t = new Ticket();
      
       Thread t1 = new Thread(t);
       Thread t2 = new Thread(t);
       Thread t3 = new Thread(t);
       Thread t4 = new Thread(t);
       t1.start();
       t2.start();
       t3.start();
       t4.start();
         }

2 个回复

倒序浏览
每个线程执行三次,两个线程就执行6次
两个线程t1和t2共享一份资源c 使得c及其下面的所有的 包含实例.变量.或方法都唯一
System.out.println("sum="+sum);//如果你在这句上面使用currentThread方法就会知道是哪个线程进行的累加
第二个程序也是四个线程共享一份资源
但是你限定了资源中变量的执行范围 所以不会超出100
如果你在第一个程序中也限定了sum的范围,同样不会超出你的设定值
回复 使用道具 举报
关于资源是否唯一
使用静态+单例模式
嵌套判断
这些在课程中都有讲到的
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马