如何呼叫另一位演员?
例如,在我的类 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在参数列表和左大括号之间添加
: this()
:Add
: this()
between the parameter list and the opening brace:将其放入初始化列表中,如下所示:
Put it in the initializer list, like so: