如何限制一个类不能被继承(restrict inheritance)?
How can we restrict inheritance for a class so that no class can be inherited from it?
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: easy
分类: OOP
标签: final, Inheritance Restriction
参考答案摘要
答案 如果希望一个类不能再被任何类继承,可以在类名前使用 Final 关键字。 下面示例中,Stone 类是 Final 的,不能被继承: public Final Class Stone { // Class methods and Variables }
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。