Skip to content

Instantly share code, notes, and snippets.

@ShmuelMofrad
Created November 29, 2017 18:37
Show Gist options
  • Save ShmuelMofrad/0e4c37cd5887e9a057bf3aa539eb9d27 to your computer and use it in GitHub Desktop.
Save ShmuelMofrad/0e4c37cd5887e9a057bf3aa539eb9d27 to your computer and use it in GitHub Desktop.
You cannot extend a class that is marked as final - java
public class MyClassCannotExtendFinalClass extends String{
/*
* cannot subclass the final class String.
* String is a final class.
* You cannot extend a class that is marked as final.
*
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment