- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个出售 Activity 门票的程序,特别是“戏剧”门票。门票的起始价格为 10.0,并乘以价格系数。我的价格因素正常工作,但门票最终都采用最终门票价格的值。
我尝试在 Event 类和 Play 类的 addTicket 方法 (stackoverflowerror) 以及 Ticket 构造函数中实例化 Ticket 对象(Ticket tick = new Ticket(this);...因为它需要 Event 的参数),但没有成功。我注意到,在不添加任何实例化的情况下,我的票证对象序列号仍然会增加,所以我不确定为什么如果*它正在创建一个新的票证对象,那么我的所有票证最终都会以相同的价格。
public class Play extends Event {
/**
* Creates a Play object with the description and price factor.
*
* @param description the description of the play
* @param priceFactor the price factor for the play
*/
public Play(String description, double priceFactor) {
super(description, priceFactor);
}
/**
* Creates a play with the given description and a price factor of 1.0.
*
* @param description the description of the play
*/
public Play(String description) {
this(description, 1.0);
}
/**
* Adds a ticket to the list of tickets sold for this Play object. It also
* adjusts the price factor.
*
* @param ticket the Ticket object to be added
* @return true iff the Ticket object could be added.
* @throws NoSpaceException
* @throws UnsupportedOperationException
*/
@Override
public boolean addTicket(Ticket ticket) throws UnsupportedOperationException, NoSpaceException {
double i = this.getPriceFactor();
if (this.getTickets().size() < 3) {
super.addTicket(ticket);
}
else if (this.getTickets().size() == 3) {
super.setPriceFactor(i * 1.2);
i = super.getPriceFactor();
super.addTicket(ticket);
}
else if (this.getTickets().size() == 4) {
super.setPriceFactor(i * 1.2);
super.addTicket(ticket);
}
return true;
}
/**
* Returns a String representation.
*
*/
@Override
public String toString() {
return "Play" + " " + super.getEventId() + " " + super.getDescription() + " " + super.getPriceFactor();
}
}
-----------------------------------------------------------------------------
public abstract class Event {
private String description;
protected int ticketsSold;
private int eventId;
private double priceFactor;
private static int counter = 1;
private static final int CAPACITY = 5;
private ObservableList<Ticket> tickets = FXCollections.observableArrayList();
/**
* Stores the description and price factor and assigns a unique id to the event.
* The constructor also allocates the array tickets.
*
* @param description a description of this Play
* @param priceFactor the price factor for this Play
*
*/
public Event(String description, double priceFactor) {
this.description = description;
this.priceFactor = priceFactor;
this.eventId = computeSerialNumber();
}
/**
* Receives the description and stores that and a price factor of 1.0. Besides,
* it assigns a unique id to the event. The constructor also allocates the array
* tickets.
*
* @param description a description of this Play
*
*/
public Event(String description) {
this(description, 1.0);
}
/**
* Returns the unique id of the play
*
* @return id of the play
*
*/
public int getEventId() {
return eventId;
}
/**
* Returns the tickets list
*
* @return the tickets list
*/
public ObservableList<Ticket> getTickets() {
return tickets;
}
/**
* Sets the price factor for the event.
*
* @param priceFactor the new price factor
*/
public void setPriceFactor(double priceFactor) {
this.priceFactor = priceFactor;
}
/**
* Computes and returns the total proceeds for this event.
*
* @return total proceeds
*/
public double getProceeds() {
double sum = 0;
for (Ticket t : tickets) {
sum += t.getPrice();
}
return sum;
}
/**
* Compares this Play with object. Follows the semantics of the equals method in
* Object.
*
*/
@Override
public boolean equals(Object object) {
if (this == object)
return true;
else
return false;
}
public int hashcode() {
return this.eventId;
}
/**
* Returns the description of the Play object
*
* @return description
*/
public String getDescription() {
return description;
}
/**
* Returns the price factor
*
* @return price factor
*/
public double getPriceFactor() {
return priceFactor;
}
/**
* Setter for description
*
* @param description the new description
*/
public void setDescription(String description) {
this.description = description;
}
/**
* Returns a unique serial number. This is a helper method.
*
* @return serial number
*/
private int computeSerialNumber() {
int i = counter;
counter++;
return i;
}
/**
* Adds a ticket to the list of tickets sold for this Play object.
*
* @param ticket the Ticket object to be added
* @return true iff the Ticket object could be added.
* @throws NoSpaceException
* @throws UnsupportedOperationException
*/
public boolean addTicket(Ticket ticket) throws UnsupportedOperationException, NoSpaceException {
if (tickets.size() == CAPACITY)
return false;
else
tickets.add(ticket);
ticketsSold++;
return true;
}
/**
* Returns a String representation of this Event object
*/
@Override
public String toString() {
return description + " " + eventId;
}
}
--------------------------------------------------------------------------------
public class Ticket {
private static int counter = 1;
private int serialNumber;
private double price;
private static double PRICE = 10.0;
private Event event;
/**
* Creates a ticket for an event. An exception is thrown if there is no space.
*
* @param event the event for which the ticket is being created.
* @throws NoSpaceException
*/
public Ticket(Event event) throws NoSpaceException, UnsupportedOperationException {
this.event = event;
event.addTicket(this);
this.serialNumber = computeSerialNumber();
}
/**
* Returns the price of the ticket
*
* @return ticket price
*/
public double getPrice() {
price = Ticket.PRICE * event.getPriceFactor();
return price;
}
/**
* Generates a String representation of the Ticket.
*/
@Override
public String toString() {
return "Ticket serialNumber = " + serialNumber + ", " + "price =" + this.getPrice();
}
/*
* Creates a serial number for the ticket.
*/
private static int computeSerialNumber() {
int i = counter;
counter++;
return i;
}
}
<小时/>
public class Test {
public static void main(String[] args) throws UnsupportedOperationException, NoSpaceException {
double a,b,c,d,e;
Play p = new Play("p1", 1.0);
Ticket tick = new Ticket(p);
Ticket tick2 = new Ticket(p);
Ticket tick3 = new Ticket(p);
Ticket tick4 = new Ticket(p);
Ticket tick5 = new Ticket(p);
p.addTicket(tick);
p.addTicket(tick2);
p.addTicket(tick3);
p.addTicket(tick4);
p.addTicket(tick5);
a = tick.getPrice();
b = tick2.getPrice();
c = tick3.getPrice();
d = tick4.getPrice();
e = tick5.getPrice();
System.out.println(a);
System.out.println(b);
System.out.println(c);
System.out.println(d);
System.out.println(e);
}
}
门票的预期结果按顺序为 [10.0, 10.0, 10.0, 12.0, 14.399]
实际结果[14.399, 14.399, 14.399, 14.399, 14.399]
最佳答案
DerMolly 的将价格因子引入 Ticket 类的替代方案是仅在创建时计算价格,而不是在每个 getPrice 上计算:
public Ticket(Event event) throws NoSpaceException, UnsupportedOperationException {
this.event = event;
event.addTicket(this);
this.price = Ticket.PRICE * event.getPriceFactor();
this.serialNumber = computeSerialNumber();
}
public double getPrice() {
return price;
}
关于java - 我应该在哪里实例化我的 "Ticket"以防止它们全部变成相同的价格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58038116/
我需要一些帮助。 我希望“总计”由“数量*价格=总计”计算(到目前为止没问题)。问题是我还需要通过“总/价格=数量”来计算“数量”,即如果一个字段发生更改,另一个字段也会自动更改。 我做了一个非常简单
我试图将每件商品的数量和价格相乘来计算总数,但我的警报中出现错误。 $.each(data.items, function(index, d){ var calcultest = d.pric
我想获得格式化的价格但没有货币符号,我只想使用 magento 的标准功能! $product->getFinalPrice(); => 19.9900 Mage::helper('core')->f
我正在尝试获取特定月份和年份中所有父类别的总价格。父类别是 parent_id == 0 的任何类别。我的查询如下所示: SELECT ROUND(SUM(od.total_price)) a
请帮我摆脱我的头痛..提前我为我的糟糕语言道歉,无论是英语还是mysql。希望有人能理解这个问题..:) 我有一个数据库,任何人都可以记录各个商店中各种产品的价格。以下查询是一个半理论示例,可能根本不
下面是我需要在数据库中设计的示例: 会有一个价格选项,如果有的话,会有一个特价选项,然后我想知道如果我希望其中一个选项是“免费”的,我该怎么做。 另请参阅根据所在国家/地区会有不同的货币。这是我的想法
商品价格格式 999,99 999 - 1 ..4 digits , - comma sign marks decimal point 99 - 2 digits after price Postg
我有这个表 stk +---------+--------------+ | Field | Type | +---------+--------------+ | id
是否有一个简单的格式化程序可以将我的字符串格式化为价格? 所以我的字符串是:300000 我想用空格来“300 000” or 1000000 "1 000 000" 张国荣 最佳答案 这样做: St
我想知道是否可以使用不依赖于 Excel 应用程序本地化(欧盟/美国)的 Excel 公式来自定义数字格式? 例如,我的值为 1291660。 然后使用公式=TEXT(A1;"# ##0,00") .
这是我的代码,对于价格 slider : $("#price-slider").ionRangeSlider({ min: 130, max: 575, onChange :
用户可以使用价格创建一个新实体。价格可以使用不同的货币(EUR,USD ...),因此我们可以乘以(price * convert_rate)得到实际价格。 我想做的是根据价格过滤记录,具体取决于前端
我正在尝试隐藏小数位在类型输入字段上,例如 数字从0.00开始 因此,输入字段中的第一个位置将为 0.00 我输入的1比它应该变成0.01 我输入的2比它应该变成0.12 比 0 所以它应该变成 1.
$res=mysql_query($qry); while($row= mysql_fetch_array($res)) { echo "".$row['Food_Name']." ".$row['P
我们正在为我们的新项目寻找信用卡网关。那里一片困惑,所有人都想把你切成碎片。每次我与他们交谈时,他们都有不同的费率,每次更新报价时,他们都会更改一些价格。 我们正在使用 .net、C#、asp.net
我已经创建了一个 jQuery 价格 slider ,但我不确定如何让过滤区域以实际价格范围开始?目前它有“$[object Object] - $[object Object]”,而我希望它有“$2
我已经创建了 jquery 价格 slider ,但我不确定如何过滤我的结果,以便在滑动时您只能看到具有该值范围内的产品。 HTML: Price range:
我有一个页面,其中有一个表格,我们可以在其中选择一个产品,输入它的数量和价格,然后应在最后一列中计算金额,并应添加新行以输入更多产品,直到我们完成为止。
我创建了电子商务网站,即将提供午餐和晚餐服务。我在这里提出问题/问题是因为我知道这里有很多可以帮助我的传奇人物。我在网站上添加了套餐/计划部分。 1. Weekly 2. Monthly 以下是订
我的网站需要一个简单的 jQuery 价格 slider 。从 0 英镑到 1000 英镑不等。 假设浏览器将 slider 设置为 100 英镑(例如),然后我需要一个立即购买按钮,该按钮将 sli
我是一名优秀的程序员,十分优秀!