发现个好东西: 一个免费短链生成项目:“ https://www.isok.co”一个可以生成所有短链的服务,isok.co的这个含义能覆盖所有短链含义isok, 我试过了很不错,都可以试试
/**
* Created by xabcd on 2019/2/17.
*/
public class threaddemo_2 {
public static void main(String args[])
{
testthread t =new testthread();
new Thread(t).start();//通过testthread类去实例化一个Thread类的对象,然后调用staart()方法启动多线程
for (int i=0;i<10000;i++) { System.out.println("main线程在运行"); } } } class testthread implements Runnable { public void run() { for (int i = 0; i < 10000; i++) { System.out.println("TestThread 在运行"); } } }