INNER CODE UNIT · Java

setMaxSpeed

learning-zone/spring-boot-basics · spring/b-Spring-Object-Dependency/src/spring/Car.java:20

	public void setMaxSpeed(int maxSpeed) {
		this.maxSpeed = maxSpeed;
	}	

	public void move() {
		System.out.println("Fuel type :" +fuelType);
		System.out.println("Car started....");
		System.out.println("Max speed :" +maxSpeed);
	}
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…