学习要点
- 进程和线程的关系
- 多线程程序运行模式
- 定义线程的方法
多线程与多进程
多进程: 在操作系统中能同时运行多个程序
多线程:在一个程序中有多个顺序流同时执行
创建线程的方法
方式1:定义一个线程类,它继承类Thread并重写其中的方法run(),方法run()称为线程体
由于java只支持单继承,用这种方法的类不能再继承其它类
class FirstThread extends Thread{ // FirstThread继承Thread public void run(){ //复写run方法 for (int i = 0; i<100; i++){ System.out.println("FirstThread--->" + i); } } }
interface Test{ public static void main(String args[]){ //生成线程类的对象 FirstThread ft = new FirstThread(); //启动线程 ft.start();//就绪状态 for (int i = 0; i<100; i++){ System.out.println("main--->" + i); } } }
时间: 2025-01-01 23:37:02