标签:rgs star style ide 匿名 子类 tar 方法 ack
匿名内部类实现线程的两种方式:
第一种方式:
第二种方式:
package com.yyx.thread; /** * 匿名内部类创建线程 yyx 2018年2月4日 */ public class AnonymousThread { 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() { @Override public void run() { for (int x = 0; x < 50; x++) { System.out.println(Thread.currentThread().getName() + "--" + x); } } }) { }.start(); } }
标签:rgs star style ide 匿名 子类 tar 方法 ack
原文地址:https://www.cnblogs.com/xianya/p/9192923.html