Answer plz..........In C++ application virtual function is used. Assume if C++ stops supporting virtual functions, what changes need to be made in the application?
virtual function
Collapse
X
-
Well, what would change in your application if virtual didn't work? Obviously, the first step would be to remove the 'virtual' keyword from your files, but what next? How could you gain back the functionality of virtual without actually using virtual? -
Originally posted by sunny3Answer plz..........In C++ application virtual function is used. Assume if C++ stops supporting virtual functions, what changes need to be made in the application?
Conside that of you remove the virtual keyword you could also remove any, or all, of the keywords. The result would be not usable.Comment
-
-
Originally posted by mschenkelbergbuild your own vtable!Comment
Comment