TwoThread.java
上传用户:songled
上传日期:2022-07-14
资源大小:94k
文件大小:0k
源码类别:

进程与线程

开发平台:

Java

  1. public class TwoThread extends Thread {
  2. public void run() {
  3. for ( int i = 0; i < 10; i++ ) {
  4. System.out.println("New thread");
  5. }
  6. }
  7. public static void main(String[] args) {
  8. TwoThread tt = new TwoThread();
  9. tt.start();
  10. for ( int i = 0; i < 10; i++ ) {
  11. System.out.println("Main thread");
  12. }
  13. }
  14. }