2010-01-15から1日間の記事一覧

14. 三項演算子

14. 三項演算子 三項演算子 lesson 036 class Lesson036 { public static void main(String args[]) { String str_t = "俺を変えたのは真!おまえへの執念だ"; String str_f = "俺は妖星のユダ"; System.out.println(true ? str_t : str_f); } } 実行結果 L:…