2022年6月19日

浅学之三元运算符

摘要: //三元运算符 public class Demo05 { public static void main(String[] args) { //x ? y :z //如果x==true,则结果为y,否则结果为z int score = 20; String type = score < 60 ?" 阅读全文

posted @ 2022-06-19 08:03 言语说 阅读(16) 评论(0) 推荐(0) 编辑

浅学之字符串连接符

摘要: public class Demo04 { public static void main(String[] args) { int a = 10; int b = 20; //字符串连接符 + System.out.println(""+a+b);//加号前面有字符串 则结果为字符串 System 阅读全文

posted @ 2022-06-19 07:52 言语说 阅读(20) 评论(0) 推荐(0) 编辑

导航