如何呼叫另一位演员?

发布于 2024-11-05 20:03:03 字数 287 浏览 0 评论 0原文

例如,在我的类 Foo 有两个 ctor 方法,我如何在另一个 ctor 中调用无参数 ctor ?

class Foo {
   public Foo() {
      // initialized this class 
   }

   public Foo(int a, int b) {
      // initialized by Foo(), how do I call Foo() here ?

      .... // other initializing here
   }

}

For example, in my class Foo has two ctor methods, how do I call parameterless ctor in another ctor?

class Foo {
   public Foo() {
      // initialized this class 
   }

   public Foo(int a, int b) {
      // initialized by Foo(), how do I call Foo() here ?

      .... // other initializing here
   }

}

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

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

发布评论

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

评论(2

眼波传意 2024-11-12 20:03:03

在参数列表和左大括号之间添加 : this()

class Foo {
   public Foo() {
   }

   public Foo(int a, int b) : this() {
   }
}

Add : this() between the parameter list and the opening brace:

class Foo {
   public Foo() {
   }

   public Foo(int a, int b) : this() {
   }
}
骷髅 2024-11-12 20:03:03

将其放入初始化列表中,如下所示:

public Foo(int a, int b) : this() {
          // initialized by Foo(), how do I call Foo() here ?

          .... // other initializing here
       }

Put it in the initializer list, like so:

public Foo(int a, int b) : this() {
          // initialized by Foo(), how do I call Foo() here ?

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