可以使用数组的isEmpty属性来判断一个数组是否为空。如果数组中没有任何元素,该属性会返回true,否则返回false。例如:
let array = [Int]() if array.isEmpty { print("数组为空") } else { print("数组不为空") }
输出结果为"数组为空"。