03 2021 档案

摘要:网页整顿改不了3.18之前的,续上 类型转换 public class Demo04 { public static void main(String[] args) { int i = 128; byte b = (byte)i; System.out.print(i); System.out.p 阅读全文
posted @ 2021-03-22 17:43 TheCasually 阅读(25) 评论(0) 推荐(0)
摘要:Java基础语法 标识 单行标注 // 多行标注 /* */ 多做标注 关键字 public class Demo02 { public static void main(String[] args) { String ab="c"; System.out.print(ab); } } 注意语法中符 阅读全文
posted @ 2021-03-14 13:47 TheCasually 阅读(54) 评论(0) 推荐(0)
摘要:HelloWorld (notepad++) Hello.java 写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); } } 3.cmd打开代码路径 4. 阅读全文
posted @ 2021-03-11 15:45 TheCasually 阅读(22) 评论(0) 推荐(0)