多选题

下面的代码运行输出结果可能是哪个() class ThreadNotify...

发布于 2022-03-03 15:13:21

下面的代码运行输出结果可能是哪个()
class ThreadNotify{
    private volatile Object lock = new Object()
    void startThread(final String name) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    synchronized (lock) {
                        lock.wait()
                        System.out.println("thread " + name + " finish")
                    }
                } catch (InterruptedException e){
                    e.printStackTrace()
                }
            }
        }).start()
    }
    void notifyThread() {
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    synchronized (lock){
                        Thread.sleep(1000)
                        lock.notify()
                        Thread.sleep(1000)
                        System.out.println("thread notify finish")
                    }
                } catch (InterruptedException e){
                    e.printStackTrace()
                }
            }
        }).start()
    }
    public static void main() {
        ThreadNotify threadNotify = new ThreadNotify()
        threadNotify.startThread("one")
        threadNotify.startThread("two")
        threadNotify.notifyThread()
        try {
            Thread.sleep(5000)
        } catch (InterruptedException e){
            e.printStackTrace()
        }
    }
}


登录后免费查看答案
关注者
0
被浏览
24
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看