02 2024 档案

摘要:public class Demo02 { public static void main(String[] args) { int i = 128; byte b = (byte) i; //强制类型转换 (类型)变量名 高->低 //自动转换 低->高 System.out.println(i) 阅读全文
posted @ 2024-02-24 18:13 唯手熟尔- 阅读(16) 评论(0) 推荐(0)
摘要:public class Demo01 { public static void main(String[] args) { //整数扩展 进制 二进制0b 十进制 八进制0 十六进制0x int i=10; int i2 = 010;//八进制 int i3 = 0x10;//十六进制 Syste 阅读全文
posted @ 2024-02-24 16:02 唯手熟尔- 阅读(16) 评论(0) 推荐(0)
摘要:Markdown学习 二级标题 三级标题 四级标题 字体 helloword helloword helloword helloword 引用 选择狂神 分割线 图片 超链接 [点击跳转哔哩哔哩][https://www.bilibili.com/video/BV12J41137hu/?p=6&sp 阅读全文
posted @ 2024-02-23 19:18 唯手熟尔- 阅读(21) 评论(0) 推荐(0)