//: Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"// 断言, 必须符合某个条件,程序才能继续运行下去// 可以看做是一个底线要求var age = 19;assert(age > 18, "年龄必须大于18岁才能继续");
本文共 232 字,大约阅读时间需要 1 分钟。
//: Playground - noun: a place where people can playimport UIKitvar str = "Hello, playground"// 断言, 必须符合某个条件,程序才能继续运行下去// 可以看做是一个底线要求var age = 19;assert(age > 18, "年龄必须大于18岁才能继续");
转载于:https://www.cnblogs.com/Rinpe/p/5050624.html