函数需要被对象调用,那么函数都有一个所属对象引用,就是this,所以同步函数使用的锁是this。
用一下代码验证可得结果:- class Ticket implements Runnable
- {
- private int ticket = 100;
- Object obj = new Object();
- boolean flag = true;
- public void run()
- {
-
- while(true)
- {
- show();
- }
-
- }
- public synchronized void show()
- {
-
- if(ticket>0)
- {
- try
- {
- Thread.sleep(10);
- }
- catch (Exception e)
- {
- }
- System.out.println((Thread.currentThread()==this)+"同步函数卖票"+ticket--);
- }
- }
- }
- class ThisLockDemo
- {
- public static void main(String[] args)
- {
- Ticket t = new Ticket();
- Thread t1 = new Thread(t);
-
-
- t1.start();
-
- }
- }
复制代码 打印结果是“true同步函数售票ticket--”
这个在毕老师的视频里面有讲到过的。自己多练习两边就明白了。
|