Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不是在要求答案,我知道这可能会得到很多反对,但我走了。我从哪里开始?我对并发编程的大部分笔记都是红色的,但仍然不明白他们想从我这里得到什么。你们知道有什么好的教程吗?关于我使用 join、sleep 还是 isAlive 方法的问题?
是的,请查看文档中的示例:
http://docs.oracle.com/javase/tutorial/essential/concurrency/simple.html
我建议您从头到尾阅读此Java 并发教程。然后你可以创建一个 Callable 任务并提交给执行者。新的 Callable 任务的职责是无限运行打印出消息...下面的示例代码
while (true) { System.out.println("I am going to print this forever") }
我建议您在尝试使用低级功能之前学习高级并发对象。