本帖最后由 奔跑的二叉树 于 2013-9-14 19:47 编辑
- package cn.baidu.com;
- public class ThreadTest {
- public static void main(String[] args) {
- new Thread()
- {
- public void run()
- {
- for(int x=0;x<100;x++)
- {
- System.out.println(Thread.currentThread().getName()+"......"+x);
- }
- }
- }.start();
-
- for(int x=0;x<100;x++)
- {
- System.out.println(Thread.currentThread().getName()+"......"+x);
- }
-
- Runnable r=new Runnable()
- {
- public void run()
- {
- for(int x=0;x<100;x++)
- {
- System.out.println(Thread.currentThread().getName()+"......"+x);
- }
- }
- };
- new Thread(r).start();
-
-
-
- }
- }
复制代码 看多线程最后一个视频,老师写了三种线程写法,有些不理解,哪位老大给分析一下,第一,第二个线程的写法
|