C#创建一个 商品类

2024-12-15 08:21:53
推荐回答(3个)
回答1:

public class product
{
string name;
int singlePrice;
int count;
int totalPrice;

public string Name
{
get { return name; }
set { name = value; }
}
public int SinglePrice
{
get { return singlePrice; }
set { singlePrice = value; }
}
public int Count
{
get { return count; }
set { count = value; }
}
public int TotalPrice
{
get { return totalPrice; }
set { totalPrice = value; }
}
}

windows中:

... // 其他代码

product.TotalPrice = product.SinglePrice * product.Count;
textbox1.text = product.TotalPrice.ToString(); // 显示到一个控件中

回答2:

这很简单啊,就楼上的那样,你应该是初学者吧。

回答3:

你还不如说让谁给你个系统得了