?? car.java
字號:
package com.db4o.f1.chapter2;
public class Car {
private String model;
private Pilot pilot;
public Car(String model) {
this.model=model;
this.pilot=null;
}
public Pilot getPilot() {
return pilot;
}
public void setPilot(Pilot pilot) {
this.pilot = pilot;
}
public String getModel() {
return model;
}
public String toString() {
return model+"["+pilot+"]";
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -