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

📄 busstop2.java

📁 A part public bus simulation system, mainly about map design, java file, groupwork, helpful to the b
💻 JAVA
字号:
package tools;import java.awt.Point;public class BusStop2 extends PtTools{	//======================================	//attributes	private int numOfBus=0;	private String roadName;	//======================================	//constructor 		public BusStop2(Point loc) {			super(loc);			super.setID(2);				}		//======================================	// roadName operation	public void setRoadName(String name){		roadName=name;	}	public String getRoadName(){		return roadName;	}	//======================================	// numOfBus operation	public void setNumOfBus(int numBus){		this.numOfBus=numBus;	}		public int getNumOfBus(){		return this.numOfBus;	}}

⌨️ 快捷键说明

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