【使用】:集合的第一个元素。
值得注意的是:字符串是字符的集合。
/// 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 }
网友评论