本帖最后由 c19t043 于 2014-7-8 18:29 编辑
-----------------下面,基础测试的时候题,结构一直没用,搜了下,做了下面的题
class Program
{
//7、 定义一个结构叫MyColor,有三个成员,分别为red,green,blue
//声明一个 MyColor类型的变量,并对其成员赋值.使MyColor可以表示成一个红色.
static void Main(string[] args)
{
MyColor color = new MyColor("red","green","blue");
Console.WriteLine(color.red);
Console.ReadKey();
}
}
struct MyColor
{
public string red;
public string green;
public string blue;
public MyColor(string red, string green, string blue)
{
this.red = red;
this.green = green;
this.blue = blue;
}
}
-------------------这样做后,,感觉 结构 和 类 看不出 区别。
求帮助
|