本帖最后由 黑马李文 于 2013-5-30 08:50 编辑
代码运行结果是什么??- import java.io.*;
- public class MyThread extends Thread{
- public static void main(String args[]){
- MyThread mt = new MyThread();
- mt.start();
- }
- public void run(){
- try {
- sleep(200);
- System.out.println
- ("Printing from thread run() method");
- } catch ( IOException e) {
-
- }
- }
- }
复制代码 |