📄 test.java
字号:
package com.john.test;
public class Test
{
static int index = 0;
/**
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
hello();
}
public static void hello()
{
System.out.println(index++);
hello();
hello();
hello();
hello();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -