📄 scope1.java
字号:
//c4:Scope1.java
//author:ZhangHongbin
//This program is protected by copyright laws.
//Variables in method and in class.
public class Scope1
{
int x=1;
public static void main(String[] args)
{
int x=2;
System.out.println("x in main= "+x);
Scope1 vt = new Scope1();
System.out.println("x in class= "+vt.x);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -