POLAYOR

随笔分类 -  Java / Java学校

学校Java Week9
摘要:Week9 W9L1 Static Variable the particular member belongs to a type itself, rather than to an instance of that type. Array of Objects Just like int or 阅读全文

posted @ 2022-11-10 11:40 POLAYOR 阅读(18) 评论(0) 推荐(0)

学校Java Week7
摘要:Week7 W7L1 Java Virtual Machine (JVM) JDK (Development Kit) JRE (Runtime Environment) JDB (Debugger) .java -> [javac compiler] -> .class -> [JVM] -> U 阅读全文

posted @ 2022-11-10 11:37 POLAYOR 阅读(11) 评论(0) 推荐(0)

学校Java Week6
摘要:Week6 W6L1 Array // create an Array int [] myArray; myArray = neew int[5]; // 2D Array int[][] a = new int[3][5]; // 3 rows, 5 columns Arrays + For Lo 阅读全文

posted @ 2022-10-21 14:42 POLAYOR 阅读(28) 评论(0) 推荐(0)

学校Java Week5
摘要:Week5 W5L1 Review Control Flow Condition Loops counter Loops For loops Does the exact same thing with less code for (int i = 0; i < 10; i++) // initia 阅读全文

posted @ 2022-10-11 21:43 POLAYOR 阅读(54) 评论(0) 推荐(0)

学校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 阅读(21) 评论(0) 推荐(0)

学校Java Week3
摘要:Week3 W3L1 public static void main(string[] args) { System.out.println("hello world"); // ";"很重要 System.out.println(10+5); } Variables Stored in RAM p 阅读全文

posted @ 2022-09-22 20:41 POLAYOR 阅读(30) 评论(0) 推荐(0)

导航