摘要:
public class Variable{ static int a=123; //static 类变量 int b=456; //实例变量 public void method(){ int i=2; //局部变量 } } 类变量 static 从属于类,随着类的创建而存在 类变量也叫静态变量 阅读全文
摘要:
八大基本类型 byte short int long float double char boolean 字节 1 2 4 8 4 8 2 1位 ####进制 int a=10; int b=010; //0开头:八进制 int c=0x10; //0x开头:十六进制 System.out.prin 阅读全文