- 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/
是 if(a == 0 && b == 0 && c == 0) { return; } 一样 if(a == 0) { return; } if(b == 0) { return; } if(c =
我想做这样的事情: Class A Class B extends A Class C extends A B b = new B(); C c = new C(); b->setField("foo
我对 Mysql 世界很天真......:)我试图使用连接从表中查询, 我遇到结果集问题...表结构如下 下面... VIDEO_XXXXX | Field | Type
我最近问过关于从另一个类获取类的唯一实例的问题。 ( How to get specific instance of class from another class in Java? ) 所以,我正
假设我们有两种类型 using t1 = int*; using t2 = int*; 我知道 std::is_same::value会给我们true .什么是,或者是否有模板工具可以实现以下目标?
对于我的一个应用程序,我假设比较 2 个字符串的第一个字符比比较整个字符串是否相等要快。例如,如果我知道只有 2 个可能的字符串(在一组 n 字符串中)可以以相同的字母开头(比如说 'q'),如果是这
我想在我的NXP LPC11U37H主板(ARM Cortex-M0)上分析一些算法,因为我想知道执行特定算法需要多少个时钟周期。 我编写了这些简单的宏来进行一些分析: #define START_C
我在 Excel 中创建了一个宏,它将在 Excel 中复制一个表格,并将行除以我确定的特定数字(默认 = 500 行),并为宏创建的每个部门打开不同的工作表。 使用的代码是这样的: Sub Copy
我想根据第一个字典对第二个字典的值求和。如果我有字典 A 和 B。 A = {"Mark": ["a", "b", "c", "d"], "June": ["e", "a"], "John": ["a
当我这样做时 system()在 Perl 中调用,我通常根据 perldocs 检查返回码.嗯,我是这么想的。大部分时间 $rc!=0对我来说已经足够了。最近我在这里帮助了两个遇到问题的人syste
在我的进度条上,我试图让它检测 div 加载速度。 如果 div 加载速度很快,我想要实现的目标将很快达到 100%。但进度条的加载速度应该与 div 的加载速度一样快。 问题:如何让我的进度条加载
当我获得与本地时间相同的时间戳时,firebase 生成的服务器时间戳是否会自动转换为本地时间,或者我错过了什么? _firestore.collection("9213903123").docume
根据the original OWL definition of OWL DL ,我们不能为类和个体赋予相同的名称(这是 OWL DL 和 OWL Full 之间的明显区别)。 "Punning" i
我有两个输入复选框: 尝试使用 jQuery 来允许两个输入的行为相同。如果选中第一个复选框,则选中第二个复选框。如果未检查第 1 个,则不会检查第 2 个。反之亦然。 我有代码: $('inpu
可以从不同系统编译两个相同的java文件,但它们都有相同的内容操作系统(Windows 7),会生成不同的.class文件(大小)? 最佳答案 是的,您可以检查是否有不同版本的JDK(Java Dev
我正在清理另一个人的正则表达式,他们目前所有的都以结尾 .*$ 那么下面的不是完全一样吗? .* 最佳答案 .*将尽可能匹配,但默认情况下为 .不匹配换行符。如果您要匹配的文本有换行符并且您处于 MU
我使用 Pick ,但是如何编写可以选择多个字段的通用PickMulti呢? interface MyInterface { a: number, b: number, c: number
我有一个 SQL 数据库服务器和 2 个具有相同结构和数据的数据库。我在 2 个数据库中运行相同的 sql 查询,其中一个需要更长的时间,而另一个在不到 50% 的时间内完成。他们都有不同的执行计划。
我需要你的帮助,我有一个包含两列的表,一个 id 和 numpos,我希望 id 和 numops 具有相同的结果。 例子: $cnx = mysql_connect( "localhost", "r
如何将相同的列(在本例中按“级别”排序)放在一起?我正在做一个高分,我从我的数据库中按级别列出它们。如果他们处于同一级别,我希望他们具有相同的 ID。 但是我不想在别人身上显示ID。只有第一个。这是一
我是一名优秀的程序员,十分优秀!