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

📄 carsim.java

📁 CarSim is an application for the simulating the (simplified) movement of cars on a two-dimensional s
💻 JAVA
字号:
package ope.carsim.gui;

/**
 * The class <CODE>CarSim</CODE> serves as a starting
 * point for the CarSim program.
 * It only contains a <CODE>main</CODE> method for
 * starting up the user interface.
 */
public class CarSim {

	/**
	 * Starts up the CarSim user interface.
	 */
  public static void main(String[] args) { 
    CarSimFrame frame = new CarSimFrame();
    frame.setVisible(true);
  }
  
  
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -