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