在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
import Foundation //4、复合赋值操作符 var a = 1 a += 2 //一元减运算符(一个数值前加了符号-,叫作一元减运算符) let three = 3 let minusThree = -three //minusThree = -3 let plusThree = -minusThree // plusThree = 3 //一元加运算符(一元加运算符(+)返回的值,不做不论什么变动) let minusSix = 6 let alsoMinusSix = +minusSix // alsoMinusSix = 6 //6、三元条件运算符 //特别注意:三目运算符里面的(?)前面一定要有至少一个空格 let contentHeight = 40 let rowHeight = contentHeight + (contentHeight > 20 ? |
请发表评论