摘要: 数据类型拓展与面试题讲解 import java.math.BigDecimal; public class Demo03 { public static void main(String[] args) { //整数扩展: 进制 二进制0b 十进制 八进制0 十六进制0x int i = 10 ; 阅读全文
posted @ 2022-07-04 00:19 努力学习的J1an-JIan 阅读(25) 评论(0) 推荐(0)
摘要: 数据类型 public class Demo02 { public static void main(String[] args) { // String a="Hello"; //int num = 10; // System.out.println(a); //System.out.printl 阅读全文
posted @ 2022-07-03 23:33 努力学习的J1an-JIan 阅读(32) 评论(0) 推荐(0)
摘要: 标识符和关键字 public class Demo01 { public static void main(String[] args) { String Ahello = "Andy"; // ctrl+ d 复制当行内容 String ahello = "Andy"; String $hello 阅读全文
posted @ 2022-07-02 23:32 努力学习的J1an-JIan 阅读(21) 评论(0) 推荐(0)
摘要: 基础语法1 public class HelloWorld { public static void main(String[] args) { //输一个Hello,World! // System.out.println("Hello,World!"); //多行注释 /* 注释*/ /* 我是 阅读全文
posted @ 2022-07-02 23:10 努力学习的J1an-JIan 阅读(24) 评论(0) 推荐(0)
摘要: Hello world psvm sout public class HelloWord { public static void main(String[] args) { System.out.println("Hello,World!"); } } 阅读全文
posted @ 2022-06-25 11:16 努力学习的J1an-JIan 阅读(23) 评论(0) 推荐(0)
摘要: 打开CMD的方式 win+r 输入cmd 常用的Dos命令 1.#盘符切换2.#查看当前文件目录下的所有文件 dir3.#切换目录 cd change directory4.#cd .. 返回上级5.#清理屏幕 cls (clear screen)6.#退出终端 exit7.#查看电脑ip ipco 阅读全文
posted @ 2022-06-25 10:32 努力学习的J1an-JIan 阅读(40) 评论(0) 推荐(0)
摘要: 快捷键 ctrl+c ctrl+v ctrl+z ctrl+x ctrl+a ctrl+shift+esc 任务资源管理器 shift+delete 永久删除 win+e 此电脑界面 阅读全文
posted @ 2022-06-25 09:59 努力学习的J1an-JIan 阅读(24) 评论(0) 推荐(0)
摘要: Markdown学习 标题: #+空格 二级 俩个#+空格 三级以此类推,最多是六级标题 字体 Hello word 两个星号粗体 Hello word 一个星号*斜体 Hello word ~~ m~~ 引用 引用别人的话 >符号 分割线 三个杠 三个星号 *** 图片 超链接 我的博客 列表 大 阅读全文
posted @ 2022-06-12 17:03 努力学习的J1an-JIan 阅读(22) 评论(0) 推荐(0)