摘要: package day01;public class demo1 { private static String ; public static void main(String[] args) { //整数拓展 进制 二进制0b 十进制0 十六进制0x int i = 10; int i2 =01 阅读全文
posted @ 2020-09-13 20:25 小猿侠 阅读(102) 评论(0) 推荐(0)
摘要: 一:基本数据类型 (Primitive Type) 1.数值类型 整数类型:byte short int long 浮点类型:float double 字符类型:char 2.boolean类型(true/false) 二:引用数据类型(Reference Type): 类 接口 数组 字符拓展 阅读全文
posted @ 2020-09-13 19:44 小猿侠 阅读(73) 评论(0) 推荐(0)
摘要: public class Hello{ public staic void main(String[] args){ System.out.print("Hello world!"); } } 阅读全文
posted @ 2020-09-13 19:07 小猿侠 阅读(94) 评论(0) 推荐(0)