POLAYOR

2022年9月29日

学校Java Week4

摘要: Week4 W4L1 三元运算符 (ternary operator) public static void main(String[] args) { boolean isCar = true; boolean wasCar = isCar ? true : false; System.out.p 阅读全文

posted @ 2022-09-29 17:14 POLAYOR 阅读(16) 评论(0) 推荐(0) 编辑

Java方法

摘要: Java方法 一个方法只完成一个功能,利于后期拓展 例如: public class Methods { public static void main(String[] args) { } public static int add(int a, int b) { int result = 0; 阅读全文

posted @ 2022-09-29 16:02 POLAYOR 阅读(11) 评论(0) 推荐(0) 编辑

导航