Skip to content

Instantly share code, notes, and snippets.

@LokeshAggarwal2
Created March 23, 2021 11:49
Show Gist options
  • Save LokeshAggarwal2/ed52dca561cd53468bdb068d3125c92e to your computer and use it in GitHub Desktop.
Save LokeshAggarwal2/ed52dca561cd53468bdb068d3125c92e to your computer and use it in GitHub Desktop.
public class Application {
public static void main(String[] args) {
CarFactory carFactory = new CarFactory();
Scanner sc= new Scanner(System.in);
System.out.print("Enter a car");
String str= sc.nextLine();
Car car = carFactory.getCar(str);
car.setColor();
car.getColor();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment