我在课堂上宣布了属性:
class RouteAction {
var index: Int = 0
我尝试在我的方法中使用(打印)index
:
class func workingWithIndex() {
print(index)
}
但看错误
实例成员'索引'不能用于类型' RouteAction'
为什么以及如何在我的方法中使用index
?
答案 0 :(得分:0)
Index
是一个实例变量,所以它必须是这样的:
class func workingWithIndex()
{
let action = RouteAction()
print (action.index)
}