Java必做实验4线程应用
admin
2024-02-08 18:17:09
0

(1). 运行以下三个程序(要求每个程序运行10次),并对输出结果给出分析。在报告中附上程序截图和详细的文字说明。(15分)

程序1:

package first;
//The Task for printing a character a specified number of times
class PrintChar implements Runnable{private char charToPrint;//The character to printprivate int times;//The number of times to repeatpublic PrintChar(char c,int t){charToPrint=c;times=t;}@Override/*Override the run()method to tell the system*what task to perform*/public void run(){for(int i=0;i

该程序是线程异步功能是的输出100个a,100个b和100个数字(1~100)

程序2:

该程序与上一题不同的是运用了线程池,用newFixedThreadPool创建了一个线程数为3的线程池,然后将和第一个程序相同的三个线程任务放进线程池,但运行时仍然是线程异步。

代码如下:

package first_2;import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;//The Task for printing a character a specified number of times
class PrintChar implements Runnable{private char charToPrint;//The character to printprivate int times;//The number of times to repeatpublic PrintChar(char c,int t){charToPrint=c;times=t;}@Override/*Override the run()method to tell the system*what task to perform*/public void run(){for(int i=0;i

可见仍无规律可循,说明线程池的多线程是线程异步的。

package first_3;
import java.util.concurrent.*;
public class AccountWithoutDSync {private static Account account = new Account();public static void main(String args[]) {ExecutorService executor = Executors.newCachedThreadPool();//Creat and launch 100 threadsfor (int i = 0; i < 100; i++) {executor.execute(new AddAPennyTask());}executor.shutdown();//Wait until all tasks are finishedwhile (!executor.isTerminated()) {}System.out.println("What is balance? " + account.getBalance());}//A thread for adding a penny to the accountprivate static class AddAPennyTask implements Runnable {public void run() {account.deposit(1);}}//An inner class for accountprivate static class Account {private int balance = 0;public int getBalance() {return balance;}public void deposit(int amount) {int newBalance = balance + amount;//This delay is deliberately added to magnify the//data-corruption problem and make it easy to see.try {Thread.sleep(5);} catch (InterruptedException ex) {}balance = newBalance;}}
}

程序3: 

package first_3;
import java.util.concurrent.*;
public class AccountWithoutDSync {private static Account account = new Account();public static void main(String args[]) {ExecutorService executor = Executors.newCachedThreadPool();//Creat and launch 100 threadsfor (int i = 0; i < 100; i++) {executor.execute(new AddAPennyTask());}executor.shutdown();//Wait until all tasks are finishedwhile (!executor.isTerminated()) {}System.out.println("What is balance? " + account.getBalance());}//A thread for adding a penny to the accountprivate static class AddAPennyTask implements Runnable {public void run() {account.deposit(1);}}//An inner class for accountprivate static class Account {private int balance = 0;public int getBalance() {return balance;}public void deposit(int amount) {int newBalance = balance + amount;//This delay is deliberately added to magnify the//data-corruption problem and make it easy to see.try {Thread.sleep(5);} catch (InterruptedException ex) {}balance = newBalance;}}
}

(2). 编写Java应用程序实现如下功能:第一个线程输出数字1,2,..,12,第二个线程输出英文单词数字和月份One January, Two February, …, Twelve December,输出的顺序和格式为1OneJanuary2TwoFebruary...12TwelveDecember,即每1个数字紧跟着2个英文单词的方式。要求线程间实现通信。要求采用实现Runnable接口和Thread类的构造方法的方式创建线程,而不是通过Thread类的子类的方式。在报告中附上程序截图、运行结果截图和详细的文字说明。(15分)

这题最主要的还是线程之间的通信,在每个线程

输出相应的数字或字符后,在下一个输出前,都要判断是否要wait,才能保证相互的连续性

源代码如下:

首先是实现两者通信的类(单独开了一个包):

其中定义了两个线程的进度timeOf...;然后先定义了一个String类型的数组month来使后面输出方便,再就是分别定义了synchronized 下的printNumber和printChatrs方法来使两线程同时进行两着主语句相差不大,printChars下定义了一个index来记录访问month的下标,注意一下两线程的输出顺序(再if里面注意判断)。

package second;
public class Connect {int timesOfInt = 1;int timesOfString = 1;String []month = {"One January", "Two  February", "Three March", "Four April", "Five May","Six June", "Seven July", "Eight August", "Nine September", "Ten October", "Eleven November", "Twelve December"};//先定义一下月份,方便输出synchronized void printNumber() {//线程1实现的输出1到12for (timesOfInt = 1; timesOfInt <= 12; timesOfInt++) {if (timesOfInt > timesOfString) //对应的字母未输出{try {wait();}catch (InterruptedException ex) {}}System.out.print(timesOfInt);notify();//输出后唤醒另一个线程}}synchronized void printChars() {//线程2输出One January到Twelve Decemberint index = 0;//记录month的下标for (timesOfString = 1; timesOfString <= 12; timesOfString++) {if (timesOfInt <= timesOfString) {//相应数字未输出try {wait();}catch (InterruptedException ex) {}}System.out.print(month[index++]+" ");//加个空格输出美观点notify();//唤醒另一个线程}}
}

然后在主运行的类下定义了两个方法printInt和printString均继承了Runnable接口,通过它们来调用非静态Connect中的方法,main类大体就只是调用:

package second;
class printInt implements  Runnable{Connect connect;//创建了connect类实例为了调用非static方法printInt (Connect connect1){connect=connect1;}public void run(){connect.printNumber();}//实现Ruunable接口
}
class printString implements Runnable{Connect connect;//创建了connect类实例为了调用非static方法printString(Connect connect1){connect=connect1;}public void run(){connect.printChars();}//实现Ruunable接口
}
public class second{    public static void main(String args[]){Connect connect=new Connect();//同一connect创建线程确保通信Thread threadA=new Thread(new printInt(connect));//Thread方法实现接口Thread threadB=new Thread(new printString(connect));threadA.start();threadB.start();}
}

(3). 编写Java应用程序实现如下功能:创建工作线程,模拟银行现金账户取款操作。多个线程同时执行取款操作时,如果不使用同步处理,会造成账户余额混乱,要求使用syncrhonized关键字同步代码块,以保证多个线程同时执行取款操作时,银行现金账户取款的有效和一致。要求采用实现Runnable接口和Thread类的构造方法的方式创建线程,而不是通过Thread类的子类的方式。在报告中附上程序截图、运行结果截图和详细的文字说明。(25分)

这道题很明显用syncrhonized的目的是,存钱时使得这次存款对应的输出余额相对应,不要让同时存的另一个数额也加进这次的余额计算中,所以采用syncrhonized关键字实现

源代码如下:

package third;
import java.util.*;
class Account implements  Runnable{private double account;//账户总额private String name;//账户名public double outAccount;//取款Account(double money,String s){account=money;name=s;}void setOutAccount(){System.out.print("请输入要取款的金额:");Scanner scanner=new Scanner(System.in);outAccount=scanner.nextDouble();}public synchronized void run(){setOutAccount();//outAccount记录这次要取的数目if(account

注意删去Account下的run的synchronized也执行一次,发现第二次要求先输入所有取款金额而不删时不用。

(4). 有一座东西向的桥,只能容纳一个人,桥的东边有20个人(记为E1,E2,…,E20)和桥的西边有20个人(记为W1,W2,…,W20),编写Java应用程序让这些人到达对岸,每个人用一个线程表示,桥为共享资源,在过桥的过程中输出谁正在过桥(不同人之间用逗号隔开)。运行10次,分别统计东边和西边的20人先到达对岸的次数。要求采用实现Runnable接口和Thread类的构造方法的方式创建线程,而不是通过Thread类的子类的方式。在报告中附上程序截图、运行结果截图和详细的文字说明。(25分)

这题和第一题2有点类似的样子,所以直接套过来用了。

源代码:

东边的人定义,变量有名字name第几个人num(用num+1表示),方法setEast实现了对East类的初始化,随后就是对run的实现.

西边的人的定义与东边基本一样,名字啥的修改一下就好了。

package four;
class East implements Runnable{private String name;//过桥人的名字private int num;//记录第num+1个人过桥(因为num当输出了)public void setEast(int num){//初始化我搞这了String s=Integer.toString(num);name="E"+s;this.num=num;}public void run(){//实现RunnableSystem.out.println(name+"正在过桥......");//输出过桥者的信息if(num==19)System.out.println("东边的人全部过桥啦!");//最后一人过桥则输出提}
}
class West implements Runnable{//与East类似的定义private String name;private int num;public void setWest(int num){//过桥者String s=Integer.toString(num);name="W"+s;this.num=num;}public void run(){System.out.println(name+"正在过桥......");//输出过桥者的信息if(num==19)//最后一人过桥则输出提示System.out.println("西边的人全部过桥啦!");}
}
public class Bridge {public static void main(String []args){for(int i=0;i<10;i++){int count=0;East []east=new East[20];West []west=new West[20];//定义桥的东西边各20个人Thread []threadWest=new Thread[20];Thread []threadEest=new Thread[20];//定义两边的线程for(int j=0;j<20;j++){east[j]=new East();east[j].setEast(j);threadEest[j]=new Thread();threadEest[j]=new Thread(east[j]);west[j]=new West();west[j].setWest(j);threadWest[j]=new Thread();threadWest[j]=new Thread(west[j]);//初始化}for(int j=0;j<20;j++){threadWest[j].start();threadEest[j].start();//开始}System.out.println("第"+(i+1)+"一波结束啦!");System.out.println("******分割******");}}
}

main主要实现了10次循环计数,以及对20个类和线程的初始化,然后就是计算东西

先到达对岸的次数(太菜了只会看着答案人工计算)qwq。

相关内容

热门资讯

消息称百度旗下昆仑芯瞄准500... 6 月 29 日消息,据《The Information》昨日援引知情人士消息,百度旗下 AI 芯片...
打造夏日消费新场景 第35届北... 北京商报讯(记者 翟枫瑞)6月29日消息,第35届北京国际燕京啤酒文化节新闻发布会在京举行。本届啤酒...
社保基金持仓数据出炉,一季度增... 最近各大上市公司一季度财报都公开了,咱们国家社保基金的持仓数据也全部曝光。目前社保拿着比亚迪价值44...
36氪首发 | 海思、中兴团队... 作者 | 乔钰杰 编辑 | 袁斯来 硬氪获悉,广州宸思通讯科技有限公司(以下简称“宸思科技”)近日完...
两天蒸发47亿市值!一纸税务通... 一纸税务通知书,能让一家百亿龙头两天蒸发47亿市值。 6月22日,北大荒(600598.SH)公告称...
SK海力士将投资1100万亿韩... SK集团会长崔泰源6月29日在韩国“三大重大计划”发布会上宣布,公司将投资1100万亿韩元扩大半导体...
两只A股,终止上市! 两家A股公司,即将摘牌。 6月29日,退市沪科(600608.SH)公告称,上海证券交易所将在202...
原创 M... 一家成立近十年的自动驾驶公司,在IPO时吸引了14家基石投资者认购近一半的发行股份,其中不乏奔驰、比...
基金忠言|国寿安保滤镜碎,三年... 图片来源:视觉中国 蓝鲸新闻6月29日讯(记者 祁和忠)保险系基金公司国寿安保总经理换人了。 6月2...
三星电机计划加码玻璃基板!相关... 6月29日,玻璃基板概念股午后有所回升, 华工科技(000988.SZ)逼近涨停, 彩虹股份(600...
拉萨海关持续壮大外贸经营主体 ...   新华网拉萨6月28日电(记者蒋梦辰)近日,记者从拉萨海关获悉,今年前5个月,西藏有进出口实绩的外...
机构:二季报临近,医药生物板块... 6月29日,华源证券发布了一篇医药生物行业的研究报告,报告指出,业绩期临近,产业链景气度有望再次迎来...
每日收评科创50放量涨超4.5... 财联社6月29日讯,三大指数全线收红,创业板指探底回升,科创50指数大涨4.61%。沪深两市成交额3...
6月多地土拍结构性升温:深圳单... 进入2026年6月,不少城市核心区地块集中诞生高溢价宗地,热度突出的城市包含深圳、杭州、长沙。 其中...
业绩炸裂!盛达资源半年预盈3.... 6月29日,贵金属矿山龙头盛达资源(000603.SZ)发布 2026 年半年度业绩预告,上半年业绩...
A股午后拉升三大股指收涨:半导... A股三大股指6月29日开盘涨跌互现。早盘沪强深弱,创指一度跌超2%。半导体午后拉升,带动两市上涨,沪...
原创 空... 前言 大家好,我是老金。 这几天,两幅极度割裂的画面放在一起,把我看笑了。 一边是在持续的热浪下,欧...
澳大利亚审慎监管局拟放宽银行风... 澳大利亚审慎监管局(APRA)6月29日就修改 银行信用风险资本设定公开征求意见,旨在加大信贷投放以...
全民炒股,急踩刹车!韩国股市突... 屈红燕/证券时报网 全民狂欢、交易高度拥挤、杠杆资金猛增、新入市投资者表现激进、大型IPO吸金等现象...