This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * | |
| * @author arunprasathshankar | |
| * fields(variables) and methods are members of a class | |
| * 2 types of members | |
| * i) class members | |
| * ii) instance members(members associated with objects) — also called static members | |
| */ | |
| public class Circle { | |
| // class field : static is a must for class field(a.k.a static field) |
NewerOlder