定义类的题目 求长方形的类
自定义一个长方形类Rect,该类包括长,宽字段与属性,并包含一个面积的只读文件,其中字段用private修饰,属性用pubilc修饰。通过文本框设置对象的长、宽属性值,在标签上输出对象的面积属性。在程序中尝试给面积属性赋值。
public class Rect
{
public Rect(){}
public Rect(double w, double h)
{
this.width = w;
this.height = h;
}
private double width;
private double height;
public double Width
{
get{return width;}
set{width=value;}
}
public double Height
{
get{return height;}
set{height=value;}
}
//面积
public double Area
{
get{Width*Height;}
}
}
static void Main(string[] args)
{
Rect r = new Rect(20,30);
Console.WriteLine(r.Area);
}
把Main中的内容修改成你控件的名字就行了。