Flutter-?和??

condition ? expr1 : expr2

如果条件为真,返回expr1,否则返回expr2

expr1 ?? expr2

如果expr1为非空,则返回其值;否则,计算并返回expr2的值。

你可能感兴趣的:(Flutter-?和??)