Showing posts with label Aabstract_Implements. Show all posts
Showing posts with label Aabstract_Implements. Show all posts

Friday, February 25, 2011

Aabstract_Implements

/*
RULE:we can not implements an abstract class but extends
*/

abstract class Aabstract_Implements implements Aabstract_Class
{

public static void main(String ars[])
{
System.out.println("this example demonstate that we can not implements an abstract class");
}
}