⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 car.java

📁 RESIN 3.2 最新源码
💻 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 + -