作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编译:
struct Foo {
var g: Double = 5.0
}
struct Bar {
var h: Double = 5.0
var foo = Foo()
}
var bar = Bar(h: 6)
添加“private”并且不再编译,标题中有上述错误:
struct Foo {
var g: Double = 5.0
}
struct Bar {
var h: Double = 5.0
private var foo = Foo()
}
var bar = Bar(h: 6) // compiler error on this line
为什么会这样?
最佳答案
这是因为对于一个结构,如果它的任何成员是私有(private)的,则合成的成员 init 将是私有(private)的。因此,您将获得一个不带参数的 init,因为所有属性都有默认值(如果至少一个非可选属性缺少默认值,则根本不会合成任何 init)。
来自 Swift 编程语言书
The default memberwise initializer for a structure type is considered private if any of the structure’s stored properties are private. Likewise, if any of the structure’s stored properties are file private, the initializer is file private. Otherwise, the initializer has an access level of internal.
关于swift - 将成员标记为私有(private)导致 Argument Passed to Call That Takes No Arguments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67285049/
我是一名优秀的程序员,十分优秀!