answersLogoWhite

0

C++ uses the generic function implicitly whenever the base class implementation (the generic method) is also the most-derived implementation.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

How this pointer works in C plus plus?

The "this" pointer is a pointer to the instance of the object, with scope within a member function of that object. It is not always necessary to use it, as references to variables defined in the object will be implicitly prefixed with "this->", but it can resolve name scoping problems, and it can make the code more readable.


How do you use implicitly in a sentence?

Implicitly means not explicitly or indirectly. Two related words to implicitly are inherently and essentially. "Bob's admission of guilt implicitly placed some of the blame on how his parents raised him."


What command is used to destroy object in c plus plus?

You use delete object in C++ to delete an object. You can also implicitly delete the object, if it is automatic type, by going out of local scope.


How do you create folder with c plus plus?

Use function mkdir.


Why to use gotoxy function in c plus plus?

to locate coordinates ..


How do you use sexuality in a sentence?

Instead, they implicitly use sexuality to sell a product.


Can you use the same function name for member function in c plus plus?

Yes. (And of course you could simply try it, instead of asking.)


What is the use of c plus plus function atoi?

Converts a character to integer (if it is a numeric character)


Why you use viod in c?

It's void, and you use is for different purposes, like:a function doesn't have return value: void fun () ...a function doesn't have parameters: ... fun (void) ...generic pointe: void *ptr;r


How do you enter a sentence as input in c plus plus?

Use the C++ getline() function from the standard library.


What is the use of header file graphics in c plus plus programming?

It has no use in C++ itself, it is only useful in Borland Turbo C++. It provides generic graphics support for Borland Turbo C++ applications.


How do you convert numeric value into alpha value in c plus plus programming language?

use the _itoa function