depot.java

来自「A part public bus simulation system, mai」· Java 代码 · 共 18 行

JAVA
18
字号
package tools;
import java.awt.Point;

//The Building class inheritance from the PrTools 
//the methods in the PrTools class can be used by this object once created
public class Depot extends PtTools  {

        //Constructor
	public Depot(Point k) {
		    //call super class constructor
		    super(k);
                    //building ID is 10
		    super.setID(10);
                    
	}

}

⌨️ 快捷键说明

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