gpt4 book ai didi

c# - 从类中获取 sting 变量

转载 作者:太空狗 更新时间:2023-10-29 23:12:10 27 4
gpt4 key购买 nike

我正在做一个小的 c# 项目,我正在编写一个小游戏,只是为了更好地使用 c# 并对其充满信心。该游戏是关于英雄的,我想在列表框中显示英雄的统计数据。我已经为每个变量获取和设置方法,但如果我想将它们添加到字符串中,它只需为 int 变量添加“”或 0。

我改变了一些东西但没有帮助(我对编程很陌生)

英雄类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Game
{
class Hero : Character
{
int health, max_health, dmg, gold, rüstung;
string name;
public Hero(string name, int health, int max_health, int dmg, int rüstung, int gold) : base(name, health, dmg)
{
this.name = name;
this.health = health;
this.max_health = max_health;
this.dmg = dmg;
this.gold = gold;
this.rüstung = rüstung;
}
public void getsDamaged(int d)
{
d = d - rüstung;
if (health - d > 0) health -= d;
else health = 0;
}
public void heal(int h)
{
if (health + h < max_health) health += h;
else health = max_health;
}
public int Gold
{
get { return gold; }
set { gold = gold + value; }
}
public int Health { get; set; }
public string Name { get; set; }
public int Max_health{get;set;}
public int Dmg { get; set; }
public int Protection { get; set; }
}
}

以及应该显示统计数据的方法:

private void show_stats(Hero h)
{
string hero_name;
hero_name = "Name: "+ h.Name;
listBox1.Items.Add(hero_name);

listBox1.Items.Add("HP: " + Convert.ToString(h.Health) + "/" +Convert.ToString(h.Max_health));
listBox1.Items.Add("Dmg: " + Convert.ToString(h.Dmg));
listBox1.Items.Add("Protection: " + Convert.ToString(h.Protection));
listBox1.Items.Add("Gold: " + Convert.ToString(h.Gold);

}//

正如我所说,它没有显示实际统计数据,而是说:

Name:
HP: 0/0
Dmg: 0
Protection: 0
Gold: 0

而我添加的英雄在 0 上没有这些统计数据

最佳答案

问题是您的构造函数正在设置成员变量,但您使用的是自动属性。这些自动属性不使用成员变量。

要解决此问题,请删除成员变量并直接使用属性。你的类(class)看起来像这样:

class Hero : Character
{
int rüstung, gold;

public Hero(string name, int health, int max_health, int dmg, int rüstung, int gold) : base(name, health, dmg)
{
this.Name = name;
this.Health = health;
this.Max_health = max_health;
this.Dmg = dmg;
this.Gold = gold;
this.rüstung = rüstung;
}
public void getsDamaged(int d)
{
d = d - rüstung;
if (Health - d > 0) Health -= d;
else Health = 0;
}
public void heal(int h)
{
if (Health + h < Max_health) Health += h;
else Health = Max_health;
}
public int Gold
{
get { return gold; }
set { gold = gold + value; }
}
public int Health { get; set; }
public string Name { get; set; }
public int Max_health{get;set;}
public int Dmg { get; set; }
public int Protection { get; set; }
}

关于c# - 从类中获取 sting 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56183874/

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