a
- public class AnomynityClassThread {
- /**
- * 匿名内部类实现多线程
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- //继承模式
- new Thread(){
- //重写run方法
- public void run(){
- for(int i = 1; i < 50 ;i++)
- System.out.println("Extends Mode:"+i);
- }
- }.start();
-
- //传递接口对象方式
- new Thread(new Runnable(){
- //实现run方式
- public void run(){
- for(int i = 1; i < 50 ;i++)
- System.out.println("Implements Mode:"+i);
- }
- }){}.start();
- }
- }
复制代码
|
|