📄 packagetest.java
字号:
/**
@version 1.11 2004-02-19
@author Cay Horstmann
*/
import com.horstmann.corejava.*;
// the Employee class is defined in that package
import static java.lang.System.*;
public class PackageTest
{
public static void main(String[] args)
{
// because of the import statement, we don't have to
// use com.horstmann.corejava.Employee here
Employee harry = new Employee("Harry Hacker", 50000, 1989, 10, 1);
// raise salary by 5%
harry.raiseSalary(5);
// print out information about harry
// use java.lang.System.out here
out.println("name=" + harry.getName() + ",salary=" + harry.getSalary());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -