swift – 为什么我允许方法访问比类访问更少限制?

swift – 为什么我允许方法访问比类访问更少限制?,第1张

概述为什么编译? internal class A { public func f() { }} 我期望f的“公共”修饰符被禁止,因为它的封闭类是内部的. 允许这种情况的一个动机在 SE-0025: Scoped Access Level(强调我的)中提到: The compiler should not warn when a broader level of access c 为什么编译?
internal class A {    public func f() {    }}

我期望f的“公共”修饰符被禁止,因为它的封闭类是内部的.

允许这种情况的一个动机在 SE-0025: Scoped Access Level(强调我的)中提到:

The compiler should not warn when a broader level of access control is used within a type with more restrictive access,such as internal within a private type. This allows the owner of the type to design the access they would use were they to make the type more wIDely accessible. (The members still cannot be accessed outsIDe the enclosing lexical scope because the type itself is still restricted,i.e. outsIDe code will never encounter a value of that type.)

因此,虽然它不会改变成员的可访问性,但如果封闭类型具有更广泛的访问级别,它允许开发人员传达他们认为给定成员应具有的访问级别 – 例如,这可能对当前具有的API有用.计划在未来版本中公开的内部类型.

总结

以上是内存溢出为你收集整理的swift – 为什么我允许方法访问比类访问更少限制?全部内容,希望文章能够帮你解决swift – 为什么我允许方法访问比类访问更少限制?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1047109.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存