43.创建线程的两种方法
Posted 许先
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了43.创建线程的两种方法相关的知识,希望对你有一定的参考价值。
public class Test { public static void main(String[] args) { MyThread mt = new MyThread(); // 实例化线程对象 mt.start();// 启动线程 } } // 通过继承Thread类来创建线程 class MyThread extends Thread { private int count = 0; public void run() { while (count < 100) { count++; if (count % 2 == 0) System.out.println("count=" + count); } } }
public class Test { public static void main(String[] args) { Thread thread = new Thread(new MyThread()); //创建线程实例 thread.start(); //启动线程 } } /**通过实现Runnable接口来创建线程类*/ class MyThread implements Runnable{ private int count=0; @Override public void run() { while(count<100){ count++; if(count%2==0) System.out.println("count="+count); } } }
以上是关于43.创建线程的两种方法的主要内容,如果未能解决你的问题,请参考以下文章