package chapter3; public class D4变量 { public static final int BBB=100; //类常量 public static void main(String[] arg) { //变量 int a=1; int b=2; //逐一声明提高可读性 //变量要进行初始化 //常量 final int KKK=100; //常量名全大写 } }…
断言:assert (了解) 所谓的断言指的是在程序编写的过程之中,确定代码执行到某行之后数据一定是某个期待的内容 范例:观察断言 public class Abnormal{ public static void main(String aegs){ int num = 10; //中间可能经历过了3步进行num变量的处理 assert num == 100:"断言错误,num 的内容不是100"; System.ou.println(num); } }…