हिंदी

Write Any Eight Basic Rules for Virtual Function that Satisfies the Compiler Requirements - Computer Science 1

Advertisements
Advertisements

प्रश्न

Write any eight basic rules for the virtual function that satisfies the compiler requirements

उत्तर

Rules for Virtual Functions

1) The virtual functions must be members of some class.

2) They cannot be static members.

3) They are accessed by using object Pointers.

4) A virtual function can be a friend of another class.

5) A virtual function in a base class must be defined, even though it may not be used.

6) The prototypes of the base class version of a virtual function and all the derived class versions must be identical. If two functions with the same name have different prototypes, C++ considers them as overloaded functions, and the virtual function mechanism is ignored.

7) We cannot have virtual constructors, but we can have virtual destructors.

8) While a base pointer can point to any type of the derived object, the reverse is not true. That is to say, we cannot use a pointer to a derived class to access an object of the base type.

9) When a base pointer points to a derived class, incrementing or decrementing it will not make it to point to the next object of the derived class. It is incremented or decremented only relative to its base type. Therefore, we should not use this method to move the pointer to the next object.

10) If a virtual function is defined in the base class, it need not be necessarily redefined in the derived class. In such cases, calls will invoke the base function.

shaalaa.com
C++ Programming
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (March)

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×