Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Last active January 17, 2024 14:57
Show Gist options
  • Save TheShubhamVsnv/eebdcd038ec9165890095af74c09d007 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/eebdcd038ec9165890095af74c09d007 to your computer and use it in GitHub Desktop.
/*
Abstract is used with classes or methods to indicate that they must be implemented by any concrete subclass.
Abstract classes cannot be instantiated, and abstract methods do not have a body in the declaring class.
*/
public abstract class MyAbstractClass {
public abstract void myAbstractMethod();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment