English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2006-12-03 04:06:34 · 4 answers · asked by aarpit31 2 in Computers & Internet Programming & Design

4 answers

An Abstract class is a class that u have to Extend or Inherit by Other classes to make the Full utilization of the Class.

2006-12-04 02:54:49 · answer #1 · answered by Arpit 2 · 0 0

An Abstract class is a class that u have to Extend or Inherit by Other classes to make the Full utilization of the Class.

An Abstract Class will Contain one or more abstarct methods with are just declared but not defined in the same class.

Any class which will inherit this class can write itz own definition for the abstract method.

2006-12-03 16:45:21 · answer #2 · answered by Ravi Nanjunda Rao 3 · 0 0

An abstract class is any class where not all the functions are implemented. Specifically, any class containing a function declaration with "= 0;" at the end of it, a la:
void ThisIsAnAbstractFunctions( int c ) = 0;

Any class that inherits this abstract class MUST implement an override of this function, or it cannot be instantiated.

2006-12-03 04:44:18 · answer #3 · answered by TankAnswer 4 · 1 0

Go here

http://en.wikipedia.org/wiki/Class_(computer_science)

2006-12-03 04:40:31 · answer #4 · answered by CommanderJim 4 · 0 0

fedest.com, questions and answers