static
- 修饰变量,变为类的属性,任何修改都为全局生效
- 修饰方法,可以不需要实例化类,直接使用“类名.方法名”访问
public class PrintHelper {
public static void print(Object o){
System.out.println(o);
}
public static void main(String[] args) {
PrintHelper.print("Hello world");
}
}