- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试找出另一种方法来跟踪手提箱的当前重量,目前我使用实例变量,但我只允许使用 2,它是手提箱中的元素列表,最大重量。
有什么方法可以做到这一点?我尝试过创建另一种方法,但我只是想不出一种不使用实例变量的方法。
我的 Suitcase.java 代码:
ArrayList<Thing> things; // List stores name of object and weight of object
private int weight; // Need to get rid of this
private int maxWeight;
public Suitcase(int weight) {
this.maxWeight = weight;
this.weight = 0; // and this?
this.things = new ArrayList<Thing>();
}
public void addThing(Thing thing) { // Need to modify this as well
if (weight < this.maxWeight) {
things.add(thing);
weight += thing.getWeight();
if (weight > this.maxWeight) {
weight -= thing.getWeight();
things.remove(things.size() - 1);
}
}
}
public Thing heaviestThing() {
if (!things.isEmpty()) {
for (int i = 0; i < things.size(); i++) {
}
}
return null;
}
public void printThings() {
for (Thing thing : things) {
System.out.println(thing);
}
}
public int totalWeight() {
return this.maxWeight;
}
@Override
public String toString() { // This is where I have problems because I need to keep track of current weight.
if (things.isEmpty()) {
return "empty (" + weight + " kg)";
} else if (things.size() == 1) {
return things.size() + " thing (" + weight + " kg)";
} else {
return things.size() + " things (" + weight + " kg)";
}
}
我的 Thing.java 代码
private String name;
private int weight;
public Thing(String name, int weight) {
this.name = name;
this.weight = weight;
}
public String getName() {
return this.name;
}
public int getWeight() {
return this.weight;
}
@Override
public String toString() {
return this.name + " (" + weight + " kg)";
}
最佳答案
为什么不创建一个方法 calculateWeight()
而不是 int maxWeight
:
public int calculateWeight() {
int weight = 0;
for (Thing thing : things) {
weight += thing.getWeight();
}
return weight;
}
关于java - 需要另一种方法来跟踪重量而不使用实例变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32606766/
我有以下查询: select ema.es_symbol as symbol, ema.score as score, ema.weight as weight, rsi.relative_stren
我有一个 ms-sql 表,看起来像这样(重量 = kg)。 我希望能够计算给定标识符所需的箱子数量和每个箱子的重量。一个盒子最多可以容纳 30 公斤。该标识符的所有项目都可以在一个框中混合。我仅限于
我正在尝试通过 PHP 将重量分配给卡车。 条件 卡车可以有不同的尺寸 可设置单辆或多辆 卡车越少越好 我有这个 class VehicleCalculation { /** * @var
如何在这段代码中引用石头的重量,以便我可以在unlockChest方法中使用它?我基本上试图将用户从对象 new Stone()) 输入的权重相加,因此它 == 组合了用户在 Chest() 构造函数
我在线性布局中使用表格布局,第一行结果很好,但连续的行完全错误,尽管设置了它们。我不确定这是否是我正在运行的 Android Studio 版本的问题,或者它是否不适用于 kotlin ...有什么办
我在平衡方面遇到了麻烦。我觉得我在这里遗漏了一些东西.. 这个问题等同于以下情况: table 上散布着各种质量的砝码。 你手里拿着几个不同质量的砝码。 如果 table 上有一组重量与您手中的重量相
我已经在 YOLOv3 中进行了超过 3 个类别的自定义检测,但是检测结果不准确,所以我想用更多图像重新训练我的自定义 YOLO 权重,但是 当我用新图像运行它时,它立即完成,我做错了什么? 这是我如
所以我需要分割字符串: Laundry Detergent 2X Ultra Free Clear 50
我使用 ClientBundle 和 CssResource 接口(interface)。所有适用于类的样式都有效: 在 CSS 中:.dialogVPanel { margin: 5px;} 在界面
我几乎是编程新手,所以这可能看起来是一个非常愚蠢的问题,我已经尝试这样做有一段时间了,但无法理解它。 但是我想知道 JList 对象是否可以存储多个值,因此当我单击列表中的对象时,不同的值(例如价格、
我想创建具有相同宽度并被拉伸(stretch)以(匹配)父按钮的按钮。我需要以编程方式来完成它。首先,我创建了一个所需状态的布局草稿(只关注按钮的绿线):
我正在尝试在 iOS 中模拟 Android android:layout_weight="1" 中的属性。 我有一个带有 7 个按钮的 View ,我希望它们都具有相同的宽度和相同的边距。在 And
我想知道使用 XmlDocument 类来处理小型 XML 文件的感觉。如果在加载XML文件的过程中,XmlDocument为所有的XML元素及其关系创建了一整套面向对象的结构,理论上对于小的xml文
给定 n 个无限容量的箱子,我想将 m 件元素装入其中(每个元素都有特定的重量),同时最小化最重箱子的重量。 这不是传统的垃圾箱包装/背包问题,其中垃圾箱的容量有限,而您试图尽量减少使用的垃圾箱数量;
过去几天我一直在学习 D3。我尝试将我所学到的所有内容简化为一个简单的 D3 示例,但我看到了标题中提到的错误。 我确信这很简单,我错过了什么? 代码: .node { fill: #c
我是一名优秀的程序员,十分优秀!