Friday, February 25, 2011

Aabstract_Public_Class

/*
RULE:-abstract may be have public access specifier
*/

abstract public class Aabstract_Public_Class
{
public void test()
{
System.out.println("allowed here combination of keywords");
}
}