We can give semicolon at the end of the class. but it is not necessary, generally we will not use because java uses } as the end of the class, semicolon for end of the statements.
Devidas Sonawane
Nov 8th, 2005
Semicolon is given at the end of sentence not at the end of class and class start with open brace ({) and end with the close brace (}). but for annonymous inner class we can give semicolon.
Why we can't put semicolon at the end of a class in java??