委托上的可选参数无法正常工作

发布于 2024-11-01 07:06:44 字数 119 浏览 0 评论 0原文

为什么这段代码不能编译?

delegate int xxx(bool x = true);

xxx test = f;

int f()
{
   return 4;
}

Why this piece of code does not compile?

delegate int xxx(bool x = true);

xxx test = f;

int f()
{
   return 4;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

贵在坚持 2024-11-08 07:06:44

可选参数用于调用端,而不是用于有效的单方法接口实现。例如,这个应该编译:

delegate void SimpleDelegate(bool x = true);

static void Main()
{
    SimpleDelegate x = Foo;
    x(); // Will print "True"
}

static void Foo(bool y)
{
    Console.WriteLine(y);
}

Optional parameters are for use on the calling side - not on what is effectively like a single-method-interface implementation. So for example, this should compile:

delegate void SimpleDelegate(bool x = true);

static void Main()
{
    SimpleDelegate x = Foo;
    x(); // Will print "True"
}

static void Foo(bool y)
{
    Console.WriteLine(y);
}
尸血腥色 2024-11-08 07:06:44

test(false) 会发生什么?它会破坏堆栈,因为签名必须匹配。

What will happen test(false)? It will corrupt the stack, because signatures must match.

在梵高的星空下 2024-11-08 07:06:44

试试这个方法:

static int f(bool a)
{
  return 4;
}

Try this way:

static int f(bool a)
{
  return 4;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文