C#程序中,value是什么意思
publicclassWalletThingBase2:{3:protectedreadonlyintMaxLength=10;4:protectedreadonlyin...
public class WalletThingBase
2: {
3: protected readonly int MaxLength = 10;
4: protected readonly int MaxWidth = 7;
5: protected readonly int MaxThickness = 1;
6:
7: private int _length = 0;
8: public int Length
9: {
10: get { return this._length; }
11: set
12: {
13: if (value <= 0 || value > this.MaxLength)
14: {
15: throw new ArgumentException("Length is invalid.");
16: }
17:
18: this._length = value;
19: }
20: }
21: }
请问: if (value <= 0 || value > this.MaxLength) 中的value是什么意思?也没有定义吖 展开
2: {
3: protected readonly int MaxLength = 10;
4: protected readonly int MaxWidth = 7;
5: protected readonly int MaxThickness = 1;
6:
7: private int _length = 0;
8: public int Length
9: {
10: get { return this._length; }
11: set
12: {
13: if (value <= 0 || value > this.MaxLength)
14: {
15: throw new ArgumentException("Length is invalid.");
16: }
17:
18: this._length = value;
19: }
20: }
21: }
请问: if (value <= 0 || value > this.MaxLength) 中的value是什么意思?也没有定义吖 展开
展开全部
第一、value是很多控件的值。比如说<input type="button" value="确定"/ >把这个控件放到页面上,然后在浏览器中查看就是一个确定按钮。
第二、如果你自定义一些字段的话,那么vs 2008开发工具默认的他的属性的值是value。
比如,public static string Ziduan = “测试";
然后重构一下这个字段。、
public static string Ziduan
{
get { return Class1.Ziduan ; }
set { Class1.Ziduan = value; }
}
这里的value就代表在调用的时候可以任意的赋给Ziduan 一个值。
第二、如果你自定义一些字段的话,那么vs 2008开发工具默认的他的属性的值是value。
比如,public static string Ziduan = “测试";
然后重构一下这个字段。、
public static string Ziduan
{
get { return Class1.Ziduan ; }
set { Class1.Ziduan = value; }
}
这里的value就代表在调用的时候可以任意的赋给Ziduan 一个值。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询