gpt4 book ai didi

ios - 实例成员 'index' 不能用于类型 'RouteAction'

转载 作者:行者123 更新时间:2023-11-30 12:48:53 26 4
gpt4 key购买 nike

我在类中声明了属性:

class RouteAction {

var index: Int = 0

我尝试使用(打印)index在我的方法中:

class func workingWithIndex() {

print(index)
}

但看到错误

Instance member 'index' cannot be used on type 'RouteAction'

为什么以及如何使用 index用我的方法?

最佳答案

Index 是一个实例变量,因此它必须类似于:

class func workingWithIndex()
{
let action = RouteAction()
print (action.index)
}

关于ios - 实例成员 'index' 不能用于类型 'RouteAction',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41262827/

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