gpt4 book ai didi

c# - 从一个类到另一个类调用字符串方法

转载 作者:太空宇宙 更新时间:2023-11-03 21:59:24 25 4
gpt4 key购买 nike

我的作业基于硬币和纸牌游戏,非常简单。我们得到了一些完整的和一些不完整的文件。我想做的是从一个类 (card.cs) 调用另一个类 (hand.cs) 的方法(实际上是一个字符串)。

这是来自 card.cs 的字符串方法:

public string ToString(bool shortFormat, bool displaySuit)
{
string returnString;

// Describe the FaceValue.
FaceValue faceValue = GetFaceValue();
string faceValueAsString = faceValue.ToString();
if (shortFormat) {
if (faceValue <= FaceValue.Ten) {
faceValueAsString = (faceValue - FaceValue.Two + 2).ToString();
} else {
faceValueAsString = faceValueAsString.Substring(0, 1);
}
}

returnString = faceValueAsString;

// Describe the Suit.
if (displaySuit) {
string suit = GetSuit().ToString();
if (shortFormat) {
suit = suit.Substring(0, 1);
returnString += suit;
} else {
returnString += " of " + suit;
}
}

return returnString;
}

来自 hand.cs(仅 ToString 字符串/方法,此文件中还有其他函数处理创建手牌(列出命名的牌)并向其添加牌。)

/// <summary>
/// Outputs the hand of cards.
/// See the ToString method in the Card class for a description of
/// the two parameters: shortFormat and displaySuit.
/// Pre: true
/// Post: Displayed the hand of cards.
/// </summary>
public void DisplayHand(bool shortFormat, bool displaySuit) {

//
//**************** CODE NEEDS TO BE ADDED**********************
// Should be able to call the ToString method in the Card class,
// as part of this.
//

} // end DisplayHand

它们是我为作业获得的未经编辑的文件。我想知道的是如何在 DisplayHand(shortFormat, displaySuit) 中使用 TwoString(shortFormat, displaySuit)。在一个阶段,我有一个单独的列表来放入字符串值,但它被删除试图将文件恢复到原始状态。我不太确定这将如何在游戏的后期使用,但我想如果我可以让它与列表一起运行,然后将列表更改为字符串或数组或任何可以稍后轻松完成的内容。一旦我知道如何调用这个字符串,我就应该能够修改我必须调用的所有其他字符串和整数的代码。

最佳答案

您需要一个Card 来调用ToString。我假设你会这样做:

foreach (Card card in this.Cards) { ... } // Loop through cards in this hand.

如果没有看到代码,我无法确切地告诉你如何做。

一旦你有了一个 Card(在 card 变量中),像这样调用 ToString:

string str = card.ToString(true, true);

关于c# - 从一个类到另一个类调用字符串方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10886375/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com