📄 inheritancedemo.java
字号:
public class InheritanceDemo
{
public static void main(String[] args)
{
HourlyEmployee joe = new HourlyEmployee("Joe Worker",
new Date("January", 1, 2004), 50.50, 160);
System.out.println("joe's longer name is " + joe.getName( ));
System.out.println("Changing joe's name to Josephine.");
joe.setName("Josephine");
System.out.println("joe's record is as follows:");
System.out.println(joe);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -