不会打篮球的牛牛 level
获赞
70
粉丝
11
关注
12
看过 TA
686
门头沟学院
2025
后端
IP属地:上海
暂未填写个人简介
私信
关注
原内容已删除
0 点赞 评论 收藏
分享
点赞 70
评论 31
0 点赞 评论 收藏
分享
pickring_one:很可能是后端不缺人了
0 点赞 评论 收藏
分享
09-24 22:11
已编辑
门头沟学院 后端
0 点赞 评论 收藏
分享
来一个offer咩:import java.util.concurrent.atomic.AtomicInteger; public class AlternatePrintingNumbersAtomic { private static AtomicInteger count = new AtomicInteger(1); private static final int MAX_COUNT = 10; public static void main(String[] args) { Thread thread1 = new Thread(() -> { while (count.get() <= MAX_COUNT) { if (count.get() % 2 == 1) { System.out.println(Thread.currentThread().getName() + ": " + count.getAndIncrement()); } } }, "Thread1"); Thread thread2 = new Thread(() -> { while (count.get() <= MAX_COUNT) { if (count.get() % 2 == 0) { System.out.println(Thread.currentThread().getName() + ": " + count.getAndIncrement()); } } }, "Thread2"); thread1.start(); thread2.start(); } }
查看3道真题和解析
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务