📄 car.java
字号:
package example;public class Car implements java.io.Serializable { private Model model; private Color color; private int year; public Car() { } public Car(Model model, Color color, int year) { this.model = model; this.color = color; this.year = year; } public Model getModel() { return this.model; } public Color getColor() { return this.color; } public int getYear() { return this.year; } public String toString() { return "Car[" + this.year + ", " + this.color + ", " + this.model + "]"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -