Java-Rules
Learn Java By Rules And From The Errors
Spring
Home
Java-8
Spring
Hibernate
keywords
servlet
jdbc
Web Services
Ajax
concepts
Friday, February 25, 2011
abstract variables
/*
RULE:
an abstract class can contain any no of instace variables and methods
*/
abstract class Aabstract_Class_Any
{
int x;
int y;
abstract void myMethod1();
abstract void myMethod2();
abstract void myMethod3();
}
NEXT
Newer Post
Home