标签: swift
写作之间在技术上有区别
if n > 0, isTrue { // do stuff }
和
if n > 0 && isTrue { // do stuff }
在if条件内? guard等显然也是如此。
if
guard