資源簡介
用Java寫的球場售票系統(tǒng),球場界面,座位價格,區(qū)域包含在numbers.txt, sections.txt 和 rows.txt 中。
讀取這些數(shù)據(jù)后,然后用layout畫出界面(UI),界面上不同的座位由不同的顏色標出。然后用戶可以點擊界面進行買票,用戶也可以查看購物車,還可以結(jié)賬,還可以退票。

代碼片段和文件信息
import?java.util.ArrayList;
public?class?Cart?{
private?ArrayList?seats=new?ArrayList();
private?double?totalprice=0;
//constructor
public?Cart(){
}
//getmethods
public?ArrayList?getseat(){
return?seats;
}
public?double?gettotalprice(){
return?totalprice;
}
public?void?setseat(ArrayList?a)
{
seats=a;
}
public?void?addseat(Seat?a){
seats.add(a);
}
/*
?*?delete?one?seat?in?the?cart
?*/
public?void?removeseat(Seat?a){
seats.remove(a);
}
/*
?*?clear?all?seats?in?the?cart
?*/
public?void?removeAll(){
seats.removeAll(seats);
}
/*
?*?calculate?the?total?price?of?the?customer?order?not?including?the?tax
?*/
public?void?totalprice(Cart?a){
int?i;
a.totalprice=0;
for(i=0;i a.totalprice+=a.seats.get(i).getPrice();
}
/*
?*?calculate?the?total?price?including?the?tax?and?service;
?*/
public?double?taxprice(Cart?a){
return?(a.totalprice*(1+0.0625)+5);
}
/*
?*?clear?the?cart
?*/
public?Cart?remove(Cart?a){
a=new?Cart();
return?a;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1128??2009-04-27?15:31??Tickets_Selling_System\Cart.java
?????文件???????1567??2009-04-27?15:31??Tickets_Selling_System\Customer.java
?????文件???????1003??2008-10-28?13:45??Tickets_Selling_System\numbers.txt
?????文件????????560??2009-04-27?15:31??Tickets_Selling_System\Order.java
?????文件??????12055??2009-04-27?15:31??Tickets_Selling_System\PurchaseDialog.java
?????文件???????1003??2008-10-28?13:44??Tickets_Selling_System\rows.txt
?????文件???????1027??2009-04-27?15:31??Tickets_Selling_System\Seat.java
?????文件???????1003??2008-11-25?16:29??Tickets_Selling_System\sections.txt
?????文件???????2076??2009-04-27?15:31??Tickets_Selling_System\Stadium.java
?????文件???????8889??2009-04-27?15:31??Tickets_Selling_System\TicketSellfr
?????文件???????5092??2009-04-27?15:31??Tickets_Selling_System\ViewDialog.java
?????目錄??????????0??2009-11-23?23:20??Tickets_Selling_System
-----------?---------??----------?-----??----
????????????????35403????????????????????12
評論
共有 條評論