2022年7月21日
摘要: import com.sun.org.apache.xpath.internal.operations.Bool; public class Demo2 { public static void main(String[] args) { int num = 10; System.out.print 阅读全文
posted @ 2022-07-21 12:04 na2co3- 阅读(28) 评论(0) 推荐(0)
摘要: public class Dome03 { public static void main(String[] args) { //二进制0b 八进制0 十六进制0x int i = 10; int i2 = 010; int i3 = 0x10; System.out.println(i); Sys 阅读全文
posted @ 2022-07-21 12:03 na2co3- 阅读(19) 评论(0) 推荐(0)
摘要: import java.sql.SQLOutput; public class Demo04 { public static void main(String[] args) { //强制转换(类型)变量名 高--低 int i = 128; byte b = (byte)i;//内存溢出 //自动 阅读全文
posted @ 2022-07-21 12:02 na2co3- 阅读(24) 评论(0) 推荐(0)