1.

What Is A Node Class In C++?

Answer»

A node class is a class that,

  1. relies on the base class for services and implementation.
  2. provides a WIDER interface to the users than its base class.
  3. relies primarily on VIRTUAL FUNCTIONS in its public interface.
  4. depends on all its direct and indirect base class.
  5. can be understood only in the context of the base class.
  6. can be used as base for further derivation.
  7. 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.

A node class is a class that,

A node class is a class that has added new services or functionality beyond the services inherited from its base class.



Discussion

No Comment Found