java多线程中执行多个程序的实例分析
程序员文章站
2022-09-06 17:16:02
我们知道多线程因为同时处理子线程的能力,对于程序运行来说,能够达到很高的效率。不过很多人对于多线程的执行方法还没有尝试过,本篇我们将为大家介绍创建线程的方法,在这个基础上,对程序执行多条命令的方法进行...
我们知道多线程因为同时处理子线程的能力,对于程序运行来说,能够达到很高的效率。不过很多人对于多线程的执行方法还没有尝试过,本篇我们将为大家介绍创建线程的方法,在这个基础上,对程序执行多条命令的方法进行展示。下面我们就来看看具体的操作步骤吧。
1、创建线程对象我们需要用到thread类,该类是java.lang包下的一个类,所以调用时不需要导入包。下面我们先创建一个新的子类来继承thread类,然后通过重写run()方法(将需要同时进行的任务写进run()方法内),来达到让程序同时做多件事情的目的。
import java.awt.graphics; import java.util.random; public class threadclass extends thread{ public graphics g; //用构造器传参的办法将画布传入threadclass类中 public threadclass(graphics g){ this.g=g; } public void run(){ //获取随机的x,y坐标作为小球的坐标 random ran=new random(); int x=ran.nextint(900); int y=ran.nextint(900); for(int i=0;i<100;i++){ g.filloval(x+i,y+i,30,30); try{ thread.sleep(30); }catch(exception ef){ } } } }
2、在主类的按钮事件监听器这边插入这样一段代码,即每按一次按钮则生成一个threadclass对象。
public void actionperformed(actionevent e){ threadclass thc=new threadclass(g); thc.start(); }
3、在这里我们生成threadclass对象并调用start()函数后,线程被创建并进入准备状态,每个线程对象都可以同时独立执行run()方法中的函数,当run()方法中的代码执行完毕时线程自动停止。
java8多线程运行程序实例
public class main { //method to print numbers from 1 to 10 public static void printnumbers() { for (int i = 1; i <= 10; i++) { system.out.print(i + " "); } //printing new line system.out.println(); } //main code public static void main(string[] args) { //thread object creation thread one = new thread(main::printnumbers); thread two = new thread(main::printnumbers); //starting the threads one.start(); two.start(); } }
输出
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9 10
到此这篇关于java多线程中执行多个程序的实例分析的文章就介绍到这了,更多相关java多线程中执行多个程序内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: C# WPF Image控件的绑定方法