Logo 
Search:

C++ Programming FAQ

Submit Interview FAQ
Home » Interview FAQ » C++ ProgrammingRSS Feeds

What is a node class?

  Shared By: Adah Miller    Date: Jan 25    Category: C++ Programming    Views: 155

Answer:

A node class is a class that,
-> relies on the base class for services and implementation,
-> provides a wider interface to te users than its base class,
-> relies primarily on virtual functions in its public interface
-> depends on all its direct and indirect base class
-> can be understood only in the context of the base class
-> can be used as base for further derivation
-> can be used to create objects.
A node class is a class that has added new services or functionality beyond the services inherited from its base class

Share: 
 

Didn't find what you were looking for? Find more on What is a node class? Or get search suggestion and latest updates.


Your Comment
  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].


Tagged: