這就是我們所擁有的。這是斯威夫特代碼:爲什麼我不能將我的類方法定義爲包含變量的索引實例數組?
class Process {
// Some methods and properties
}
class SomeClass {
var list: [Process]? = nil
// ...
func someFunc() {
// ...
if list !=nil {
for i in list! {
if list[i].
}
}
插入在最後一行點(.
),我不明白的方法和屬性的列表。
如果我改變指數i
到數字的話,我會得到的方法和它的類工藝屬性的列表 How it's look like
我應該怎麼做索引使用變量我可以使用的方法它的課?
P.S.對不起,我使用機器翻譯
非常感謝您的回答! –