📄 staticdemo.java
字号:
package com.myclass.src;
public class StaticDemo {
static int a = 3;
static int b;
//b = 6;
static void meth(int x) {
System.out.println("x = " + x);
System.out.println("a = " + a);
System.out.println("b = " + b);
}
static {
System.out.println("Static 块开始");
b = a * 4;
}
public static void main(String args[]) {
System.out.println("main 开始");
meth(42);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -