The most common technique for writing multithreaded Java program

分类: OS 发布时间: 2023-11-15 03:39 浏览量: 0

The most common technique for writing multithreaded Java programs is _____.

A.extending the Thread class and overriding the run() method

B.implementing the Runnable interface and defining its run() method

C.designing your own Thread class

D.using the CreateThread() function

正确答案是B