c#属性如何自定义,以及为什么要定义属性而不
展开全部
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
class Program
{
static void Main(string[] args)
{
C c = new C();
//c.S = "编译错误";
c.V("正确运行");
Console.WriteLine(c.S);
Console.ReadLine();
}
}
public class C
{
private string s;
public string S
{
get
{
return this.s;//注意返回私有的
}
private set//重要
{
this.s = value;
}
}
public void V(string s)
{
this.S = s;
//下面也行
this.s = s;
}
}
另外你的代码有明显的问题,属性里return的应该是另一个私有字段,通常是属性名的首字母小写。像你那样写运行时一般会出现循环引用,堆栈溢出。
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
class Program
{
static void Main(string[] args)
{
C c = new C();
//c.S = "编译错误";
c.V("正确运行");
Console.WriteLine(c.S);
Console.ReadLine();
}
}
public class C
{
private string s;
public string S
{
get
{
return this.s;//注意返回私有的
}
private set//重要
{
this.s = value;
}
}
public void V(string s)
{
this.S = s;
//下面也行
this.s = s;
}
}
另外你的代码有明显的问题,属性里return的应该是另一个私有字段,通常是属性名的首字母小写。像你那样写运行时一般会出现循环引用,堆栈溢出。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询