java/C# 构造函数接受母类的参数
我有一个派生的类来添加一些字段。
class B: A {
private sthg ;
public B(A a, String sthg){
//
}
}
我想知道我必须在构造函数中做什么才能在传递给构造函数的 A 对象和我的对象之间建立链接。
谢谢。
I have a class that I have derivated to add some fields.
class B: A {
private sthg ;
public B(A a, String sthg){
//
}
}
I wonder what I have to do in the constructor in order to have a link between my A object passed to the contructor and my object.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
继承有什么问题吗?
...好吧,如果您真的想要有一个 B() 实例,例如它可以处理 A() 实例,您可以向 B 添加一个 A 参数,
但在这种情况下,我真的不明白 B 需要什么来扩展 A。
whats' wrong with inheritance?
...well, if you really want to have an instance of B() such as it can handle an A() instance, you can add an A parameter to B
but, in this case, I really don't see what's the need to B to extends A.