Wednesday, September 24, 2008

Java Interview Questions - How to define an Abstract class?

Java Interview Questions - How to define an Abstract class?
A class containing abstract method is called Abstract class. An Abstract class can't be instantiated.
Example of Abstract class:
abstract class testAbstractClass {
protected String myString;
public String getMyString() {
return myString;
}
public abstract string anyAbstractFunction();
}

No comments:

Post a Comment

Thanks to given comments.......

My Blog List