gpt4 book ai didi

C# Basic OOP - 使用构造函数制作类的字典

转载 作者:太空狗 更新时间:2023-10-30 00:39:35 25 4
gpt4 key购买 nike

我一直在尝试的代码以及出了什么问题:http://ideone.com/cvLRLg

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
public class Minion
{
public static int manaCost;
public static int attack;
public static int health;
public static string cardText;
public Minion(int mana, int atk, int h, string txt)
{
manaCost = mana;
attack = atk;
health = h;
cardText = txt;
}
public void displayStats(string name)
{
Console.WriteLine(name + "\nMana Cost: " + manaCost + "\nAttack: " + attack + "\nHealth: " + health + "\n" + cardText + "\n");
}
}
class Program
{
static void Main(string[] args)
{
List<string> indexList = new List<string>();
Dictionary<string, Minion> minionList = new Dictionary<string, Minion>();

//buffer so I start at 1 and not 0
indexList.Add("MissingNo");

//make a Wolfrider card
indexList.Add("Wolfrider");
Minion Wolfrider = new Minion(3, 3, 1, "Charge");
minionList.Add(indexList[1], Wolfrider);

//make a Goldshire Footman card
indexList.Add("Goldshire Footman");
Minion GoldshireFootman = new Minion(1, 1, 2, "Taunt");
minionList.Add(indexList[2], GoldshireFootman);

//look through all my cards
for (int i = 1; i < indexList.Count(); i++)
minionList[indexList[i]].displayStats(indexList[i]);
Console.ReadLine();
}
}
}

我一直在尝试自学 C#,但这一直困扰着我。我想制作一个接受字符串然后返回一个 Minion(新类)的字典。

Minion 在创建时接受四个参数,因此在将它添加到 Dictionary 之前,我必须专门编写一行代码来创建一个新的 Minion。

但是,当我检查我拥有的所有 Minions 时,出于某种原因,第一个将 OTHER Minion 的属性还给我。

Wolfrider
Mana Cost: 1
Attack: 1
Health: 2
Taunt

Goldshire Footman
Mana Cost: 1
Attack: 1
Health: 2
Taunt

列表工作正常,因为名称是正确的...但是 Wolfrider 具有闪金镇步兵的属性。

有没有更有效/优化的方法来做到这一点?如果不是,我做错了什么?

最佳答案

主要问题是您的成员是 static :

public static int manaCost

所以基本上,您影响的最后一个值获胜。将它们转换为实例属性:

public int ManaCost { get; set; }

然后去掉 indexList 直接用你的 Minion 的名字作为字典键。

关于C# Basic OOP - 使用构造函数制作类的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34451555/

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