- /*
- 这个程序是用匿名内部类的方式实现线程的两种创建方式
- */
- class VariousThread
- {
- public static void main(String[] args)
- {
- //通过继承Thread类来创建一个线程
- new Thread()
- {
- public void run()
- {
- for(int x=0;x<50;x++)
- System.out.println(Thread.currentThread().getName()+"....."+x);
- }
- }.start();
-
- //通过实现Runnable接口来创建一个线程
- new Thread(new Runnable()
- {
- public void run()
- {
- for(int x=0;x<50;x++)
- System.out.println(Thread.currentThread().getName()+"........."+x);
- }
- }).start();
- }
- }
复制代码
|
|