摘要: import com.sun.org.apache.xpath.internal.objects.XString;public class Demo03 { public static void main(String[] args) { //整数拓展 进制 二进制:以0或B开头 八进制:以0开头 阅读全文
posted @ 2022-03-07 17:54 祀梦213 阅读(15) 评论(0) 推荐(0)
摘要: public class Demo02 { public static void main(String[] args) { //八大基本数据类型 //字节 /** * 1 (b)bit表示1位,位是计算机存储的最小单位,11001100是一个八位二进制数 * 1 Byte(B)表示一个字节,1 B 阅读全文
posted @ 2022-03-07 17:08 祀梦213 阅读(28) 评论(0) 推荐(0)
摘要: public class HelloWorld { public static void main(String[] args) { //单行注释:可以注释一行文字 //输出一个Hello,WOrld! System.out.println("Hello,World!"); //多行注释:可以注释一 阅读全文
posted @ 2022-03-07 15:58 祀梦213 阅读(20) 评论(0) 推荐(0)