Boolean以外で条件判断しようとするとエラーになる。
let i = 1
if i {
// this example will not compile, and will report an error
}
比較演算子を使って条件判断するとコンパイルできる。
let i = 1
if i == 1 {
// this example will compile successfully
}
参考資料
Go to list of users who liked
More than 5 years have passed since last update.
Boolean以外で条件判断しようとするとエラーになる。
let i = 1
if i {
// this example will not compile, and will report an error
}
比較演算子を使って条件判断するとコンパイルできる。
let i = 1
if i == 1 {
// this example will compile successfully
}
参考資料
Register as a new user and use Qiita more conveniently
Go to list of users who liked