?? warehouse.java
字號:
class Warehouse
{
public static void main(String args[])
{
Golfball gb1 = new Golfball(
new StringBuffer("BrandX"),
new StringBuffer("Professional"), 100);
Golfball gb2 = new Golfball(
new StringBuffer("BrandX"),
new StringBuffer("Professional"), 100);
//...
if (gb1.equals(gb2))
System.out.println("Ball 1 equals Ball 2");
else
System.out.println("Ball 1 does not equal Ball2");
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -