版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
實驗4Java異常處理一、實驗?zāi)康?、理解異常的基本概念。2、理解throws、try,catch語句的語法格式。3、理解自定義異常類的定義和使用方法。4、掌握J(rèn)ava的異常處理機(jī)制、方法與應(yīng)用。二、實驗任務(wù):1、編寫一程序?qū)崿F(xiàn)成績輸入并校驗學(xué)生成績,當(dāng)用戶輸入-1時表示輸入結(jié)束。根據(jù)正確輸入的成績平均成績。成績用實數(shù)表示,如果用戶輸入一個不正確的成績,如-80、大于100或字符等,程序應(yīng)該拋出異常,并捕獲異常。請使用try和catch語句實現(xiàn)對輸入、計算過程中出現(xiàn)的異常進(jìn)行處理。2、聲明一個異常類,即當(dāng)除數(shù)為零時拋出的異常類DivideByZeroException,并在下列代碼需要的地方進(jìn)行異常拋出和異常捕獲,以便用戶輸入出現(xiàn)錯誤時,程序具有容錯功能。本題異常包括除數(shù)為零,以及輸入數(shù)據(jù)格式錯誤,如數(shù)據(jù)中包含字母。//DivideByZeroTest.java//Asimpleexceptionhandlingexample.//Checkingforadivide-by-zero-error.importjava.text.DecimalFormat;importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;publicclassDivideByZeroTestextendsJFrameimplementsActionListener{privateJTextFieldinput1,input2,output;privateintnumber1,number2;privatedoubleresult;//InitializationpublicDivideByZeroTest(){super("DemonstratingExceptions");Containerc=getContentPane();c.setLayout(newGridLayout(3,2));c.add(newJLabel("Enternumerator",SwingConstants.RIGHT));input1=newJTextField(10);c.add(input1);c.add(newJLabel("EnterdenominatorandpressEnter",SwingConstants.RIGHT));input2=newJTextField(10);c.add(input2);input2.addActionListener(this);c.add(newJLabel("RESULT",SwingConstants.RIGHT));output=newJTextField();c.add(output);setSize(425,100);show();}//ProcessGUIevents//ThrowinganexceptionwhendataformatiswrongorattemptedtodividebyzeropublicvoidactionPerformed(ActionEvente){DecimalFormatprecision3=newDecimalFormat("0.000");output.setText("");number1=Integer.parseInt(input1.getText());number2=Integer.parseInt(input2.getText());result=quotient(number1,number2);output.setText(precision3.format(result));}//Definitionofmethodquotient.Usedtodemonstrate//throwinganexceptionwhenadivide-by-zeroerror//isencountered.publicdoublequotient(intnumerator,intdenominator){return(double)numerator/denominator;}publicstaticvoidmain(Stringargs[]){DivideByZeroTestapp=newDivideByZeroTest();app.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){e.getWindow().dispose();System.exit(0);}});}}package
zhidao;import
java.awt.event.ActionEvent;import
java.awt.event.ActionListener;import
javax.swing.BorderFactory;import
javax.swing.JFrame;import
javax.swing.JLabel;import
javax.swing.JTextField;import
javax.swing.JTextArea;import
javax.swing.JButton;import
javax.swing.JScrollPane;import
javax.swing.border.BevelBorder;import
javax.swing.JPanel;public
class
StudentScore
extends
JFrame
implements
ActionListener{
private
JTextField
stuId;
private
JTextField
stuScore;
private
JTextArea
allStudent;
private
JButton
button;
private
final
JPanel
panel
=
new
JPanel();
public
StudentScore()
{
setBounds(200,
100,
244,
630);
getContentPane().setLayout(null);
panel.setBounds(0,
0,
228,
592);
getContentPane().add(panel);
panel.setLayout(null);
JLabel
lblNewLabel
=
new
JLabel("\u8F93\u5165\u5B66\u751F\u6210\u7EE9");
lblNewLabel.setBounds(20,
33,
85,
15);
panel.add(lblNewLabel);
JLabel
label
=
new
JLabel("\u8F93\u5165\u5B66\u751F\u7F16\u53F7");
label.setBounds(20,
8,
85,
15);
panel.add(label);
stuId
=
new
JTextField();
stuId.setBounds(113,
5,
105,
21);
panel.add(stuId);
stuId.setColumns(10);
stuScore
=
new
JTextField();
stuScore.setBounds(113,
33,
105,
21);
panel.add(stuScore);
stuScore.setColumns(10);
button
=
new
JButton("\u5F55\u5165");
button.setBounds(84,
64,
80,
23);
panel.add(button);
allStudent
=
new
JTextArea();
JScrollPane
scrollPane
=
new
JScrollPane(allStudent);
scrollPane.setBounds(20,
97,
198,
485);
panel.add(scrollPane);
button.addActionListener(this);
}
@Override
public
void
actionPerformed(ActionEvent
arg0)
{
//監(jiān)聽,try
catch在這里
String
id
=
stuId.getText();
String
score
=
stuScore.getText();
try{
Double
sco
=
Double.valueOf(score);
if(sco
==
-1){
allStudent.append("錄入結(jié)束");
button.setEnabled(false);
return;
}
if(sco<0
||
sco>100){
throw
new
Exception();
}
allStudent.append("編號:"+id+",成績:"+score);
allStudent.append("\n");
}catch(Exception
e){
allStudent.append("編號為"+id+"的學(xué)生成績輸入異常");
allStudent.append("\n");
}
}
public
static
void
main(String[]
args)
{
new
StudentScore().setVisible(true);
}}/DivideByZeroTest.java//Asimpleexceptionhandlingexample.//Checkingforadivide-by-zero-error.importjava.text.DecimalFormat;importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;publicclassDivideByZeroTestextendsJFrameimplementsActionListener{privateJTextFieldinput1,input2,output;privateintnumber1,number2;privatedoubleresult;//InitializationpublicDivideByZeroTest(){super("DemonstratingExceptions");Containerc=getContentPane();c.setLayout(newGridLayout(3,2));c.add(newJLabel("Enternumerator",SwingConstants.RIGHT));input1=newJTextField(10);c.add(input1);c.add(newJLabel("EnterdenominatorandpressEnter",SwingConstants.RIGHT));input2=newJTextField(10);c.add(input2);input2.addActionListener(this);c.add(newJLabel("RESULT",SwingConstants.RIGHT));output=newJTextField();c.add(output);setSize(425,100);show();}//ProcessGUIevents//ThrowinganexceptionwhendataformatiswrongorattemptedtodividebyzeropublicvoidactionPerformed(ActionEvente){DecimalFormatprecision3=newDecimalFormat("0.000");output.setText("");number1=Integer.parseInt(input1.getText());number2=Integer.parseInt(input2.getText());result=quotient(
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五年度安置住房置換補(bǔ)償合同3篇
- 2025年度生態(tài)養(yǎng)殖基地肉雞養(yǎng)殖合同2篇
- 二零二五年度化妝品美容院連鎖加盟與經(jīng)營管理合同
- 江西研學(xué)旅行課程設(shè)計
- 2024年行政事業(yè)單位短期雇傭合同3篇
- 2024年生物制藥原料批量采購合同范本3篇
- 光伏發(fā)電站建設(shè)合同
- 三國演義人物評析
- 二零二五年度醫(yī)療設(shè)備供應(yīng)與安裝服務(wù)合同6篇
- 2024年自建住宅質(zhì)量保證合同3篇
- DL∕T 1919-2018 發(fā)電企業(yè)應(yīng)急能力建設(shè)評估規(guī)范
- DL∕T 612-2017 電力行業(yè)鍋爐壓力容器安全監(jiān)督規(guī)程
- DBJ43-T 315-2016 現(xiàn)澆混凝土保溫免拆模板復(fù)合體系應(yīng)用技術(shù)規(guī)程
- 自然資源價格評估通則 TD/T 1061-2021
- 社區(qū)居家養(yǎng)老食堂方案策劃書(2篇)
- 2024年肺結(jié)節(jié)病的診斷與鑒別診斷講座課件
- 2023-2024學(xué)年浙江省寧波市余姚市九年級(上)期末英語試卷
- 健康狀況與風(fēng)險評估智慧樹知到期末考試答案章節(jié)答案2024年上海健康醫(yī)學(xué)院
- 《金融風(fēng)險管理》期末復(fù)習(xí)試題及答案
- DZ/T 0462.4-2023 礦產(chǎn)資源“三率”指標(biāo)要求 第4部分:銅等12種有色金屬礦產(chǎn)(正式版)
- 熱帶園林樹木學(xué)智慧樹知到期末考試答案章節(jié)答案2024年海南大學(xué)
評論
0/150
提交評論