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