Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is an ABC: an "Abstract Base Class"?

Answer Posted / rohit sah

An Abstract Base Class is a class that is not intended to be instantiated itself. Rather, it is intended strictly for use as a base for other classes. To prevent instantiation, an ABC will typically contain at least one pure virtual function.

The point of an ABC is to separate the interface of a group of classes from the implementation of the functions that make up the interface. This allows other code to ignore differences in how these functions are carried out. An ABC creates a contract between its descendants and any other code that uses them. The descendants must implement a certain set of functions. Code that uses them must use those functions to access whatever it is the object involved represents.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the c++ code?

1100


Ask to write virtual base class code?

2718


In the derived class, which data member of the base class are visible?

1077


Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.

1293


Do you know the use of vtable?

1100


What is iterator in c++?

1071


Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort

1008


What are member functions used in c++?

1101


Out of fgets() and gets() which function is safe to use?

1084


Can a Structure contain a Pointer to itself?

1090


Is facebook written in c++?

962


How would you use qsort() function to sort an array of structures?

1079


How do you add an element to a set in c++?

950


Is c++ the best programming language?

981


Write a function to find the nth item from the end of a linked list in a single pass.

936