java上機實驗實驗2_第1頁
java上機實驗實驗2_第2頁
java上機實驗實驗2_第3頁
java上機實驗實驗2_第4頁
java上機實驗實驗2_第5頁
已閱讀5頁,還剩5頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

1、昆明理工大學理學院信息與計算科學專業(yè)操作性實驗報告年級:10級 姓名:劉陳 學號:2 指導教師: 朱志寧實驗課程名稱:java程序設計 開課實驗室:理學院機房實驗成績:學風(5)觀察能力(15)操作能力(30)調(diào)試能力(50)其它總分實驗內(nèi)容:1 .實驗/作業(yè)題目:面向?qū)ο蟪绦蛟O計1、22 .實驗/作業(yè)課時:各2學時,共4學時3 .實驗過程(包括實驗環(huán)境、實驗內(nèi)容的描述、完成實驗要求的知識或技能):實驗環(huán)境:eclipse實驗內(nèi)容:編寫一個簡單的程序,利用數(shù)組保存書(Book), cd(CompactDisk ),磁帶(Tape)信息,并能實現(xiàn)插入、刪除、查找功能。注意使用面向?qū)ο蟮乃枷脒M行程

2、序設計。完成實驗要求的知識或技能:通過這個實驗,能用eclipse來編寫java程 序,掌握java數(shù)組的使用和面向?qū)ο蟮木幊趟枷? .程序結構(程序中的函數(shù)調(diào)用關系圖)5 .算法描述、流程圖或操作步驟:程序:父類:package Product;import java.io.IOException;import java.util.Scanner;import BookMain.BookMain;public class Product privateStringnameprivateStringtypeprivatefloatpricepublic String getName() ret

3、urnname ;publicvoid setName(String name) this . name = name;publicStringgetType() returntype;publicvoidsetType(String type)this . type = type;publicfloat getPrice() returnprice;publicvoidsetPrice(float price) this . price = price;/ 子類繼承class Book extends Product private int weight ; / 書的重量public int

4、 getweight() return weight ;public void setweight( int weight) this . weight = weight;public static voidBookMain test =Product productdb = int op = -1;try do System. out .println(System. out .println(main(String args)throwsnew BookMain ();new Product100;"1. 添加 2. 查找 3. 刪除 0." 請選擇: " )

5、;IOException 退出 " );Scanner cin= new Scanner(System. in );op = cin.nextInt();switch ( op ) case 0:System. out .println( " 系統(tǒng)退出! " );return case 1:Product p = new Product。;System.out .println(p.setName(cin.next(); System.out .println(p.setType(cin.next(); System.out .println(p.setPrice

6、(cin.nextFloat(); System.out .println(p.setPrice(cin.nextFloat();"請輸入產(chǎn)品名稱:");"請輸入產(chǎn)品類型:“);"請輸入產(chǎn)品價格:");"請輸入書的質(zhì)量:");boolean flagadd = test.add(productdb,p);if (flagadd)System. out .println( else"添加成功!");System. out .println( break ;"添加失??!");case 2:

7、Product searchP = int search = -1;String key =""System. out .println( 出所有產(chǎn)品");search = cin.nextInt();if (search = 1) System. out .println(new Product。;"請輸入查詢內(nèi)容:1.按名稱2.按類型3."請輸入產(chǎn)品名稱:");按價格4.列searchP.setName(cin.next();Product resultP = test.getProductByKey(productdb,sear

8、chP);if (resultP != null ) System. out .println( "名稱:"+ resultP.getName()+ ",類型:"+ resultP.getType()+ ",價格:"+ resultP.getPrice(); else System. out .println( "沒有匹配產(chǎn)品!"); else if (search = 2) System. out .println( "請輸入產(chǎn)品類型:");searchP.setType(cin.next()

9、;Product resultP = test.getProductByKey(productdb,searchP);if (resultP != null ) System. out .println( " 名稱: " + resultP.getName()+ ", 類型:" + resultP.getType()+ ", 價格:" + resultP.getPrice(); else System. out .println( " 沒有匹配產(chǎn)品! " ); else if (search = 3) System

10、. out .println( " 請輸入產(chǎn)品價格: " );searchP.setPrice(cin.nextFloat();Product resultP = test.getProductByKey(productdb,searchP);if (resultP != null ) System. out .println( " 名稱: " + resultP.getName()+ ", 類型:" + resultP.getType()+ ", 價格:" + resultP.getPrice(); else S

11、ystem. out .println( " 沒有匹配產(chǎn)品! " ); else if (search = 4) for (Product product : productdb) if (product != null ) System. out .println( " 名稱: " + product.getName()+ ", 類型:" + product.getType()+ ", 價格:" + product.getPrice(); break ;case 3:System. out .println( &

12、quot; 請輸入要刪除的產(chǎn)品名稱: " );String name = cin.next();boolean flagdel = test.delete(productdb, name); if (flagdel)System.out .println(" 刪除成功!" );elseSystem.out .println(" 刪除失?。?quot; );break ; while (op != 0); catch (Exception e) System. out .println( " 輸入了無效值!系統(tǒng)退出! " );e.pri

13、ntStackTrace();/ 子類繼承測試類package BookMain;import Product.Product;public class BookMain public Product getProductByKey(Product productdb,Product p) for (Product product : productdb) if (product = null ) continue ;if (product.getName().equals(p.getName() return product;if (product.getType().equals(p.ge

14、tType() return product;if (product.getPrice() = p.getPrice() return product; return null ;public boolean add(Product productdb, Product addP) for ( int i = 0; i < productdb.length ; i+) if (productdbi =null ) productdbi = addP;returntrue ;returnfalsepublic boolean delete(Product 口productdb, String name) for ( int i = 0; i < productdb.length

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論