• 大小: 10KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-03
  • 语言: Java
  • 标签: java  售票  界面  

资源简介

用Java写的球场售票系统,球场界面,座位价格,区域包含在numbers.txt, sections.txt 和 rows.txt 中。 读取这些数据后,然后用layout画出界面(UI),界面上不同的座位由不同的颜色标出。然后用户可以点击界面进行买票,用户也可以查看购物车,还可以结账,还可以退票。

资源截图

代码片段和文件信息


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\TicketSellframe.java

     文件       5092  2009-04-27 15:31  Tickets_Selling_System\ViewDialog.java

     目录          0  2009-11-23 23:20  Tickets_Selling_System

----------- ---------  ---------- -----  ----

                35403                    12


评论

共有 条评论