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。

相关内容

热门资讯

“凉都新街市”数字年货展销会启... “这个腊肉闻着好香,一看价格,更香!”家住凤凰山的李阿姨拎着刚选好的腊肉香肠笑得合不拢嘴。 “因为...
博时国企改革主题股票A:202... AI基金博时国企改革主题股票A(001277)披露2025年四季报,第四季度基金利润474.82万元...
原创 从... 2025年,光伏组件龙头厂商晶科能源预亏59亿元至69亿元,第四季度单季最高预亏逼近30亿元 投资...
青山集团:全球“镍矿和不锈钢老... 全球最大的不锈钢及镍生产商青山集团正在将其庞大的工业版图从核心的镍与不锈钢业务,迅速扩展至铝业及新能...
U23国足VS日本首发:王钰栋... 北京时间1月24日晚23:00,2026年U23亚洲杯决赛即将展开争夺,中国U23男足将在沙特吉达的...
农银国企改革混合:2025年第... AI基金农银国企改革混合(002189)披露2025年四季报,第四季度基金利润137.33万元,加权...
经济热点快评 | 人民币汇率再... 来源:北京日报客户端 1月23日,中国人民银行授权中国外汇交易中心公布,当日银行间外汇市场人民币汇率...
洋河股份董事会决议:顾宇兼任总... 来源:中访网 中访网数据 江苏洋河酒厂股份有限公司于2026年1月23日召开第八届董事会第十八次会议...
原创 老... 朋友们大家好,我是标叔。 最近这几年,中美博弈一直处在紧张的时刻。 从贸易关税到技术封锁,从能源博弈...
千亿级请求下,飞猪如何将广告外... 作者 | 曹会祎 什么是 RTA? 一句话描述:RTA(Real-Time API)= 实时竞价接口...
今世缘酒业荣获“2025ESG... 1月22日,第十五届公益节暨2025ESG影响力年会在北京举行。凭借在ESG领域的深耕实践与卓越成效...
女排超级联赛:江苏中天钢铁胜天... 1月24日,在2025-2026赛季中国女子排球超级联赛常规赛A级第11轮比赛中,江苏中天钢铁队客场...
原创 马... 最近,网上流传着一些“马云预言成真”的说法。比如,“马云早就说过,多套房将成负担”、“手里房子越多,...
省卫生健康委与河南大学“联姻”... 本报讯(记者 朱晓娟 许冬冬)政校携手,健康科普与中医药文化传播迎来专业化破局。1月22日上午,河南...
原创 8... 2025年八省经济数据一出,甘肃以令人瞩目的5.2%增速领跑,超越了上海和浙江等经济强省,着实让人眼...
原创 北... 最近这几天,国际新闻里最扎眼的,就是美国总统特朗普对欧洲盟友的关税威胁,和德国总理默茨突然宣布访华的...
华夏新机遇混合A:2025年第... AI基金华夏新机遇混合A(002411)披露2025年四季报,第四季度基金利润57.08万元,加权平...
银价猛涨!女子3年前得到的赠品... 2026年开年以来,国际现货白银价格开启“狂飙”模式。1月23日白银销售价达24.03元/克,累计涨...
易方达金融行业股票A:2025... AI基金易方达金融行业股票A(008283)披露2025年四季报,第四季度基金利润1008.52万元...
这家船厂,首获希腊船王大单 近日,中船集团沪东中华造船(集团)有限公司(下称“沪东中华”)宣布,与国际知名航运公司——卡迪夫气体...