三元運算符的格式

三元運算符的格式 [條件語句] ? [表達式1] : [表達式2] 其中如條件語句爲真(即問號前面的條件成立)執行表達式1,否則執行表達式2. public class test { public static void main(String[] args) { int a = 1; int b = 2; int c=a>b?1:0; System.out.println©; } } a>b不成
相關文章
相關標籤/搜索