我有一个超级班
class Father { public func doSomething() { } }
我想要这个儿童班
class Child: Father { private override func doSomething() { } }
但Xcode说
Overriding instance method must be as accessible as the declaration it
overrides
谢谢
你不能,因为这会违反
Liskov Substitution Principle.
原文链接:https://www.f2er.com/swift/319198.html实质上,任何可以在超类实例上运行的代码也必须能够在子类的实例上运行.
所以,如果其他一些类有一个方法
class Unrelated { func operateOnAThing(_ someThing:Father) { someThing.doSomething() } }
当你执行以下操作时,它仍然需要工作:
let aChild = Child() unrelatedInstance.operateOnAThing(aChild)
如果doSomething方法在Child类中具有更严格的访问权限,那么您将收到运行时错误.为了防止这种情况,您不能在子类中使访问更具限制性.