Are You Feeling any difficulity while writing Core-Java Programs. Send those to me Here.
Showing posts with label keywords. Show all posts
Showing posts with label keywords. Show all posts

Tuesday, 27 August 2013

List of all keywords in Java

The following is a list of Java keywords, along with brief descriptions of their functions:[2]
abstract
The abstract keyword is used to declare a class or method to be abstract[3]. An abstract method has no implementation; all classes containing abstract methods must themselves be abstract, although not all abstract classes have abstract methods. Objects of a class which is abstract cannot be instantiated, but can be extended by other classes. All subclasses of an abstract class must either provide implementations for all abstract methods, or must also be abstract.[4]