当我遇到代表时,我写这个非常简单的程序只是为了练习。当我运行它时,有一个stackoverflowexception。所以,如果有人能告诉我这段代码有什么问题,请确保我浪费了大量时间试图让它工作但不能。 这是代码:
using System;
public delegate void click();
class test
{
public click flare;
public double length;
public double Length
{
get
{
return Length;
}
set
{
Length = value;
flare();
}
}
}
class glance
{
public glance(ref test a)
{
a.flare = blank;
}
public void blank()
{
Console.WriteLine("this is blank");
}
}
class Program
{enter code here
static void Main(String[] args)
{
test know = new test();
glance x = new glance(ref know);
know.Length = 10;
}
}
答案 0 :(得分:4)
与代表无关。您在Lenght
属性中的setter中调用setter方法,这会导致异常。使用您为属性创建的支持字段:
public double Length
{
get
{
return length;
}
set
{
length = value;
flare();
}
}