美文网首页
Swift_集合的first属性

Swift_集合的first属性

作者: Eyes_cc | 来源:发表于2020-03-18 10:17 被阅读0次

【使用】:集合的第一个元素。
值得注意的是:字符串是字符的集合。

/// The first element of the collection.
// : 集合的第一个元素
///
/// If the collection is empty, the value of this property is `nil`.
// : 如果集合是空的,这个属性值是nil
///
///     let numbers = [10, 20, 30, 40, 50]
///     if let firstNumber = numbers.first {
///         print(firstNumber)
///     }
///     // Prints "10"
    @inlinable public var first: Element? { get }

相关文章

网友评论

      本文标题:Swift_集合的first属性

      本文链接:https://www.haomeiwen.com/subject/puqqyhtx.html