gpt4 book ai didi

Swift:继承项目内的类

转载 作者:行者123 更新时间:2023-11-30 13:09:12 24 4
gpt4 key购买 nike

如何从项目中的任何其他类继承?我尝试使用导入。但正如我所读到的,它用于导入其他包。示例代码如下。

[MyClass.swift]
class MyClass: AnotherClass { //error: use of undeclared type 'AnotherClass'

}

[AnotherClass.swift]
class AnotherClass {
var name: String
}

最佳答案

为了从不同的文件导入类,您需要在其声明中将您的类标记为公共(public)。

public class AnotherClass {
var name: String
}

关于Swift:继承项目内的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38929060/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com