?? body.java
字號:
import java.io.*;
public class body extends abs
{
abs theAbs;
public body(abs theAbs)
{
this.theAbs=theAbs;
}
/*print the body*/
public void display()
{
theAbs.display();
System.out.println("-----------------------------------------------\n");
System.out.println("Item Units Unit Price Subtotal\n");
}
public double getFinalCost()
{
return theAbs.getFinalCost();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -