Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
子类构造函数方法是否可以覆盖超类构造函数?因为我有一个问题 - 超类(学生),子类(学士学生),它问我学士学生类的构造方法必须覆盖学生类。问题是有错误还是有问题?tq。
构造函数永远不会被覆盖或继承。事实上,它们不能被虚拟调用。
但是,您可以在子类中创建一个构造函数,该构造函数调用父类中的构造函数。