本文介绍了什么是数组endIndex的在斯威夫特正确的行为?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

该endIndex的返回相同的值计数。
它是一个正确的行为或错误?

  VAR AR = [1,2,3,4]
ar.count // 4
ar.endIndex // 4


解决方案

Array.endIndex ,就是要在过去1数组的结束(或相同计数)迭代的目的,而不是下标。

 令x = [1,2,3,4]
对于VAR I = x.startIndex; I< x.endIndex;我++ {
    的println(X [I])
}

The endIndex returns the same values as count.Is it a correct behaviour or a bug?

var ar = [1, 2, 3, 4]
ar.count // 4
ar.endIndex // 4
解决方案

Array.endIndex is meant to be the 1 past the end of the array (or the same as count) for iteration purposes, not subscripting.

let x = [1, 2, 3, 4]
for var i = x.startIndex; i < x.endIndex; i++ {
    println(x[i])
}

这篇关于什么是数组endIndex的在斯威夫特正确的行为?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 10:20