课程 Java程序设计13:Threads (怀旧版)

来源:互联网 发布:近月少女的礼仪 知乎 编辑:程序博客网 时间:2024/06/10 01:20

Threads:

下载   返回课程目录

  • Define a thread
  • Create separate threads in a Java technology program, controlling the code and data that are used by that thread
  • Control the execution of a thread and write platformindependent code with threads
  • Describe the difficulties that might arise when multiple threads share data
  • Use wait and notify to communicate between threadsUse synchronized to protect data from corruption
  • Explain why suspend, resume, and stop methods have been deprecated in Java 2 SDK