摘要: public class demo1 { public static void main(String[] args) { int i=128; double b = i;//内存溢出,最大值127 //强制转换 (类型)变量名 高--低 //自动转换 低--高 //类型转换 //低 高 //byt 阅读全文
posted @ 2023-06-08 14:15 弘毅king 阅读(6) 评论(0) 推荐(0)
摘要: public class demoo { public static void main(String[] args){ String a="hello"; int num=10; System.out.println(a); System.out.println(num); //八大数据基本类型 阅读全文
posted @ 2023-05-26 11:31 弘毅king 阅读(8) 评论(0) 推荐(0)
摘要: public class demoo { public static void main(String[] args){ String a="hello"; int num=10; System.out.println(a); System.out.println(num); //八大数据基本类型 阅读全文
posted @ 2023-05-26 11:30 弘毅king 阅读(44) 评论(0) 推荐(0)
摘要: 单行注释:// 某某 多行注释:/* 某某哦 */ Javadoc文档注释:/** 某某 */ 阅读全文
posted @ 2023-05-09 22:29 弘毅king 阅读(11) 评论(0) 推荐(0)
摘要: Ctrl+a全选 ctrl+c复制 Ctrl+v粘贴 Ctrl+x剪切 Ctrl+z撤销 Ctrl+s保存 shift+delete永久删除 tab键四个空格和菜单键 alt+f4关闭窗口 alt+tab打开窗口 Windows+tab切换运行窗口 Windows+r运行 Windows+e打开电脑 阅读全文
posted @ 2023-04-24 20:52 弘毅king 阅读(196) 评论(0) 推荐(0)
摘要: # Markdown学习 # 标题 ## 二级标题 ### 三级标题 ## 字体样式 *ganhongyi*斜体 **ganhongyi**粗体 ***ganhongyi***粗斜体 ~~ganhongyi~~叉掉 # 超链接 [点击了解重庆8D城市](网址) ### 列表 1. A 2. B 3. 阅读全文
posted @ 2023-04-24 12:01 弘毅king 阅读(15) 评论(0) 推荐(0)