摘要: # 运算符 ``` java public class demo05 { public static void main(String[] args) { long a=123456788l; int b =520 ; short c= 20; byte d=10; System.out.print 阅读全文
posted @ 2022-04-20 19:22 回忆也交给时间 阅读(9) 评论(0) 推荐(0) 编辑
摘要: public class demo04 { //类变量:static static double salary = 2500; final static double pi = 3.14; // 属性:变量 //实例变量:从属于对象;如不进行初始化就会被赋予默认值 0 0.0 null //布尔值默 阅读全文
posted @ 2022-04-20 18:53 回忆也交给时间 阅读(17) 评论(0) 推荐(0) 编辑