有没有办法写一个If语句是
Swift,如下所示?
if a>b or c/d { //Do Something }
就像无处不在:
if a > b || d % c == 0 { // do sth }
我认为你的c / d意味着你希望d成为c的倍数.
if a>b or c/d { //Do Something }
if a > b || d % c == 0 { // do sth }
我认为你的c / d意味着你希望d成为c的倍数.