C++ Programming Question:
Download Questions PDF

What is virtual class and friend class?

C++ Programming Interview Question
C++ Programming Interview Question

Answer:

Friend classes are used when two or more classes are designed to work together and need access to each other's implementation in ways that the rest of the world shouldn't be allowed to have. In other words, they help keep private things private. For instance, it may be desirable for class DatabaseCursor to have more privilege to the internals of class Database than main() has.

Download C++ Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is Boyce Codd Normal form in C++?What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?