直接看代码
public class Test1 { public String name; // 成员变量 public static String argA; // 静态变量 public void methodA(){ int argB = 3; // 局部变量 } }