-
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Understanding Static Methods and Data Static keyword is widely used to share the same field or method among all the objects of the class. The actual goal of the static keyword is to share a single data over all the objects. There...
-
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Constructor Constructor is a simple method inside a class. Except it has some exceptions: Ø Constructor has the same name as the class. Ø Constructor does not return value even void. Ø Constructor can be built...