Skip to content

Instantly share code, notes, and snippets.

@LokeshAggarwal2
Created March 23, 2021 11:46
Show Gist options
  • Save LokeshAggarwal2/41bc7d7fd3e599ebc19f6aba4a5a4c1a to your computer and use it in GitHub Desktop.
Save LokeshAggarwal2/41bc7d7fd3e599ebc19f6aba4a5a4c1a to your computer and use it in GitHub Desktop.
public abstract class Car {
protected String color;
public abstract void setColor();
public void getColor() {
System.out.println("car color:"+ color);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment