?? advice.java
字號:
//********************************************************************
// Advice.java Author: Lewis/Loftus
//
// Represents a piece of advice. Used to demonstrate the use of an
// overridden method.
//********************************************************************
public class Advice extends Thought
{
//-----------------------------------------------------------------
// Prints a message. This method overrides the parent's version.
// It also invokes the parent's version explicitly using super.
//-----------------------------------------------------------------
public void message()
{
System.out.println ("Warning: Dates in calendar are closer " +
"than they appear.");
System.out.println();
super.message();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -