- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个 toString 来打印数组的详细信息。我可以通过执行 for 循环并在 toString 中使用打印行来让它打印出我想要的外观,但当我想在代码的主要部分中使用它时,显然它不起作用。
对于上下文,这是我对卡片的了解:
/**
* Constructor for the card. If damageDone and mana are negative they are replaced by 1
* (not the best solution but the good enough until we cover exception handling later in the
* semester). <br>
* My solution length: 8 lines
* @param manaCost - The amount of mana this spell costs to cast
* @param damageDone - The amount of damage done by this card
* @param name - the name of this card
*/
public Card(int manaCost, int damageDone, java.lang.String name) {
if (damageDone < 0) {
this.damageDone = 1;}
else {this.damageDone = damageDone;}
if (manaCost < 0) {
this.manaCost = 1;}
else {this.manaCost = manaCost;}
this.name = name;}
这是我的示例,这段代码按照我想要的方式工作,但实际上没有返回任何结果:
public java.lang.String toString(){
int count = 0;
for (int index = 0; index < card.length; index++) {
count++;
System.out.println(count + ": " + card[index]);
}
return "";}
所以我尝试构建一个字符串方法,但它没有返回任何结果,我很困惑。有谁知道我哪里出错了。
@Override
public java.lang.String toString(){
String output = "";
for (int index = 0; index < card.length; index++) {
output = output + card[index];
}
return output;}
我正在处理的完整类(class)如下,我在正在处理的其他领域仍然存在问题:
public class Deck {
private Card[] card = new Card[100];
private int cardsRunning = 100;
static int DECKSIZE = 100;
static java.lang.String emailID = "MITNY013";
private boolean random = true;
/**
* Constructor for the Deck. Adds the following cards to the deck in the following order
* 4x Super Lucky Strike, Damage 100, Mana 2
* 6x Mega Santa Hit, Damage 80, Mana 2
* 10x Critical Hit, Damage 50, Mana 5
* 10x Massive Strike, Damage 40, Mana 7
* 15x Wrong Way Down A One Way Street, Damage 30, Mana 10
* 15x Bender Rules Here, Damage 15, Mana 10
* 40x Trade, Damage 5, Mana 5 <br>
* My solution length: 16 lines (space lines not included)
* @param random - Whether to turn on random features
*/
public Deck(boolean random) {
for (int index = 0; index <= 3; index++) {
card[index] = new Card( 2, 100, "Lucky Strike");
}
for (int index = 4; index <= 10; index++) {
card[index] = new Card( 2, 80, "Santa Hit");
}
for (int index = 11; index <= 20; index++) {
card[index] = new Card( 5, 50, "Critical Hit");
}
for (int index = 21; index <= 30; index++) {
card[index] = new Card ( 7, 40, "Massive Strike");
}
for (int index = 31; index <= 45; index++) {
card[index] = new Card( 10, 30, "Wrong Way Down A One Way Street");
}
for (int index = 46; index <= 60; index++) {
card[index] = new Card( 10, 15, "Bender Rules Here");
}
for (int index = 61; index <= 99; index++) {
card[index] = new Card( 5, 5, "Trade");
}
}
/**
* Returns a string representation of the entire deck in the format
* Deck [ 1:Card [name=Super Lucky Strike, manaCost=2, damageDone=100]
* 2:Card [name=Super Lucky Strike, manaCost=2, damageDone=100]
* 3:Card [name=Super Lucky Strike, manaCost=2, damageDone=100]
* 4:Card [name=Super Lucky Strike, manaCost=2, damageDone=100]] <br>
* My solution length: 7 lines
* @overrides - toString in class java.lang.Object
*/
@Override
public java.lang.String toString(){
String output = "";
for (int index = 0; index < card.length; index++) {
output = output + card[index];
}
return output;}
/**
* Uses a random number generator to get a card from the deck somewhere then swaps the
* last card in the deck to that position and reduces the cardsRemaining by one.
* This is important. if the random flag is false you should always get the card at
* position 0. When you swap the card out you should also set the old position to null
* for safety. <br>
* My solution length: 10 lines
* @return - the card drawn or null if no cards left in deck
*/
public Card getRandomCard() {
// use random number generator
Random rand = new Random();
int randomCardNo = rand.nextInt(getCardsRemaining());
removeCard(randomCardNo);
return card[randomCardNo];
}
/**
* Return the number of cards remaining in the deck.
* My solution length: 6 lines
* @return - the total cards remaining
*/
public int getCardsRemaining() {
int temp = 100;
for (int index = 0; index < card.length; index++) {
if ((card[index] == null) ) {
temp = temp -1;
}}
cardsRunning = temp;
return cardsRunning;}
/**
* BONUS Method
* My solution length: XXX
* @return - shuffle cards in deck
*/
public void shuffle(Card[] card) {
int index;
Card temp;
Random random = new Random();
for (int i = card.length - 1; i > 0; i--){
index = random.nextInt(i + 1);
temp = card[index];
card[index] = card[i];
card[i] = temp;}}
private void removeCard(int no) {
int size = card.length;
Card[] newCard = new Card[size];
int index = 0;
for (int i = 0; i < size; i++) {
if (card[i] != null) {
newCard[index++] = card[i];
}
}
}
}
最佳答案
您需要重写 Card
和 Deck
类中的 toString
方法,如下所示:
public class Card {
int manaCost;
int damageDone;
String name;
public Card(int manaCost, int damageDone, String name) {
if (damageDone < 0) {
this.damageDone = 1;
} else {
this.damageDone = damageDone;
}
if (manaCost < 0) {
this.manaCost = 1;
} else {
this.manaCost = manaCost;
}
this.name = name;
}
// ...
@Override
public String toString() {
return "Card [manaCost=" + manaCost + ", damageDone=" + damageDone + ", name=" + name + "]";
}
}
public class Deck {
private Card[] cards;
public void setCards(Card[] cards) {
this.cards = cards;
}
// ...
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < cards.length; i++) {
sb.append(cards[i].toString() + "\n");
}
return sb.toString();
}
}
测试:
public class Main {
public static void main(String[] args) {
Card[] cards= {
new Card( 2, 100, "Lucky Strike"),
new Card( 2, 80, "Santa Hit"),
new Card( 5, 50, "Critical Hit")
};
Deck deck1 = new Deck();
deck1.setCards(cards);
System.out.println(deck1);
}
}
输出:
Card [manaCost=2, damageDone=100, name=Lucky Strike]
Card [manaCost=2, damageDone=80, name=Santa Hit]
Card [manaCost=5, damageDone=50, name=Critical Hit]
关于java - 从数组创建 toString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60131436/
正在阅读 Underscore.js 以了解它的 is[String|Number|...] 方法是如何工作的,现在我很困惑。下划线: toString.call(obj) == ['object '
scala> Array(1, 2, 3).toString res1: String = [I@11cf437c scala> List(1, 2, 3).toString res2: String
我在将字符串从 stringbuilder 转换为字符串时遇到问题。问题类似于 this issue但略有不同: 这是我的简化代码: StringBuilder sb = new StringBuil
我正在尝试将从正在构建的搜索功能中名为 Part 的模型返回的 int id 转换为字符串,以便简化搜索。 这是我目前使用的 if 语句: if(part.getId().toString().ind
我需要从所选内容中提取文本并将其发送到 TTS 服务。 TTS 服务将返回一个流 URL 和每个单词的一组索引,指示它们的开始和结束位置(时间和文本)。 当用户播放流时,我想在读出每个单词时突出显示它
我想知道人们在 Java 的 toString() 方法中放入了什么。 我一直在向一些新类添加一些内容,并且想知道它是否应该包含类名。 在类ClassConfig中,我无法决定是否应该拥有 @Over
这个问题已经有答案了: How do I compare strings in Java? (23 个回答) 已关闭 8 年前。 下面是我的主要方法,其中比较两个对象引用。覆盖toString()方法
我的问题是,JAVA中没有提供toString()方法的类是否可以打印出特定信息? 问题在于:我们为我们的应用程序提供了一个记录器(使用aspectJ),它打印出给出的特定参数。例如: public
基本上这就是我想要实现的目标。 classname@address(?)[original toString()], object's name, object's age @Override pub
据我所知,Scala 中的中缀运算符的使用应该等同于方法的调用。所以: scala> "a" + 3.toString res0: java.lang.String = a3 是相同的: scala>
这个问题已经有答案了: Why can't I access a property of an integer with a single dot? (5 个回答) 已关闭 7 年前。 functio
我正在进行测试,并且给出了很多单元(隐藏)测试,但是我的一段代码遇到了这个错误。大家能帮帮我吗? getString(comment) { const authorName = comment.get
return toString.call(obj) 和 return obj.toString() 有什么区别? 我通常会找到具有这些不同风格的代码 最佳答案 toString.call(obj) 返
例如,我必须在每个数字到字符串的转换中使用 .ToString(CultureInfo.CurrentCulture)。我能否以某种方式重写 .ToString(),这样我就不会在字符串转换中显式地收
var d = []; console.log(typeof d); // weird! console.log(d.toString()); //Prints nothing since there
当对象字面量调用toString()方法如{}.toString()会导致语法错误,但是当数组字面量调用toString()没关系。当我将对象文字分配给一个变量时,当它调用 toString() 方法
我在打印特殊数组时遇到问题: 我使用 System.out.println(Arrays.toString()); 打印多个对象的数组但现在数组中充满了对象,这些对象具有 char 值,我想打印分配给
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
> ~0..toString(2) -1 > ~1..toString(2) -2 > ~2..toString(2) -11 > ~3..toString(2) -12 > (~1).toStrin
这是我的问题,我的机器使用法语文化,因此默认情况下它以法语方式解析 (3,141592)。 如果机器文化不是美国,这里是重现我的问题的代码: float number = 4103.26808
我是一名优秀的程序员,十分优秀!