全部评论
请问手撕代码是说思路还是像lc上面写一个函数啊?
当时写的时候没写出来, 结束了改了改代码发现实现了,思路没错,写的地方写错了. 补充下线程交替输出的代码: static class Resource { int num; public Resource(int num) { this.num = num; } public synchronized void increment() { num++; if (num == 11) { num = 1; } notify(); System.out.println(num + ": " +Thread.currentThread().getName()); try { wait(); } catch (InterruptedException e) { e.printStackTrace(); } } } public static void main(String[] args) { Resource resource = new Resource(0); new Thread(() -> { while (true) { resource.increment(); } }, "t1").start(); new Thread(() -> { while (true) { resource.increment(); } }, "t2").start(); }
单例换成交替输出是什么意思,为什么要换😂
加入春招实习群一起交流哈,q群:831410254
有自我介绍和项目吗,面试官露脸吗
哪个部门?😂怎么投的简历额
问底层对非科班也太难了😫
算法题就一个反转链表嘛
相关推荐
10-19 15:00
文华学院 嵌入式工程师 点赞 评论 收藏
分享