我想輸出一個不斷變化的整數值在主要使用和多個其他類中創建。出於學習的目的,我看到是否有可能做我想做的事情,看看造成錯誤的原因。這裏的代碼:如何使用寫入行從另一個類打印整數值?
class Program
{
static void Main(string[] args)
{
// how do I avoid an identifier error with unit.() if the other class is unit:stats?
unit.();
// how can I get the troop value from the unit:stats class?
Console.WriteLine(troop);
}
}
public class stats
{
public int troop;
}
public class unit : stats
{
public void archer()
{
troop = 100;
}
}
'如果是possible',是的,只要瞭解基本的C# – Eser