Hi,
I'm reading "C++ Coding Standards" by Herb Sutter.
On page 67 there's an example which I don't understand:
---------------------------------
class Base{// ...
virtual void Foo(int);
virtual void Foo(int, int);
void Foo(int, int, int);
};
class Derived : public Base { // ...
virtual void Foo(int); // overrides Base::Foo(int), but hides the others
};
Derived d;
d.Foo(1); // ok
d.Foo(1,2); // error
d.Foo(1,2,3); // error
-----------------------------------
I don't understand why the functions "virtual void Foo(int, int)" and
"void Foo(int, int, int)" are hidden by Derived::Foo(int) ?
My opinion was that a derived class is always inheriting all functions
of a base class and can additionally override them for a specific purpose
like Foo(int).
To bring the other Base::Foo overloads into scope Sutter is using the
statement
using Base::Foo;
within the Derive class.
Thank you for your answers.
Greeting,
Chris 4 1706
Christian Christmann wrote: Hi,
I'm reading "C++ Coding Standards" by Herb Sutter. On page 67 there's an example which I don't understand: --------------------------------- class Base{// ... virtual void Foo(int); virtual void Foo(int, int); void Foo(int, int, int); };
class Derived : public Base { // ... virtual void Foo(int); // overrides Base::Foo(int), but hides the others };
Derived d; d.Foo(1); // ok d.Foo(1,2); // error d.Foo(1,2,3); // error -----------------------------------
I don't understand why the functions "virtual void Foo(int, int)" and "void Foo(int, int, int)" are hidden by Derived::Foo(int) ? My opinion was that a derived class is always inheriting all functions of a base class and can additionally override them for a specific purpose like Foo(int).
It is a direct consequence of how the compiler looks up a function.
First it searches the class hierarchy for a class which has that function.
In your specific example, when you write
d.foo(1,2);
the compiler looks up the type of d. It is Derived. Thus it looks into class
Derived, if there are one or more functions called Foo(). If there are, proceed
to the next step. If there are no, then look up the base class and try there.
Note: The number and type of the arguments is irrelevant in this step. The compiler
searches for the functions just by looking at their names!
The next step is to decide which function to choose based on the number of arguments
and their types in the set of found functions of the previous step.
In your specific case, the set of those functions contains only 1 function, since Derived
contains only 1 function called 'Foo'. The compiler sees, that Foo takes only one argument
but the call specifies 2 parameters. Thus the error message.
Note: If no argument match can be made, the compiler stops! It doesn't look for other
functions in the base class(es).
That's called hiding: A function in a derived class hides all functions with the same
name in the base class(es). To bring the other Base::Foo overloads into scope Sutter is using the statement
using Base::Foo;
within the Derive class.
That's one way to work around function hiding.
--
Karl Heinz Buchegger kb******@gascad.at
* Christian Christmann: I'm reading "C++ Coding Standards" by Herb Sutter. On page 67 there's an example which I don't understand: --------------------------------- class Base{// ... virtual void Foo(int); virtual void Foo(int, int); void Foo(int, int, int); };
class Derived : public Base { // ... virtual void Foo(int); // overrides Base::Foo(int), but hides the others };
Derived d; d.Foo(1); // ok d.Foo(1,2); // error d.Foo(1,2,3); // error -----------------------------------
I don't understand why the functions "virtual void Foo(int, int)" and "void Foo(int, int, int)" are hidden by Derived::Foo(int) ?
It's a more-or-less arbitrary language design decision; there are arguments
for, and arguments against.
The hiding ensures that calls to Foo in Derived won't inadvertently become
bound to inherited Foo implementations; in particular, with the hiding in
effect, which implementation a call to Foo in Derived is bound to cannot be
changed by adding new functions to Base (oops, I added a Base function and
suddenly Derived stopped working), part of the "fragile base class" problem.
This gives control to the Derived programmer, but it also means that the
"Derived is a kind of Base" rule is broken. I think the AKO rule is _much_
more important than "fragile base class", and the hiding is at best only a
very partial solution to that, and nobody finds the hiding very intuitive
(well, nobody I know). But then that's how it is with a lot of things.
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Christian Christmann wrote: I don't understand why the functions "virtual void Foo(int, int)" and "void Foo(int, int, int)" are hidden by Derived::Foo(int) ? My opinion was that a derived class is always inheriting all functions of a base class and can additionally override them for a specific purpose like Foo(int).
I'm afraid I don't know why it was done this way, but it is indeed the
case. Section 13.2/1 has this example:
class B{
public:
int f(int);
};
class D: public B{
public:
int f(char*);
};
Here D::f(char*) hides B::f(int) rather than overloading it.
void h(D* pd)
{
pd->f(1); // error: D::f(char*) hides B::f(int)
pd->B::f(1); // OK
pd->f("Ben"); // OK, calls D::f
}
- end example.
Paragraph 10.2/2 is probably relevant, but I couldn't quite decipher it.
Regards,
Jacques.
"Christian Christmann" <pl*****@yahoo.de> wrote in message
news:42***********************@newsread4.arcor-online.net... Hi,
I'm reading "C++ Coding Standards" by Herb Sutter. On page 67 there's an example which I don't understand: --------------------------------- class Base{// ... virtual void Foo(int); virtual void Foo(int, int); void Foo(int, int, int); };
class Derived : public Base { // ... virtual void Foo(int); // overrides Base::Foo(int), but hides the others };
Derived d; d.Foo(1); // ok d.Foo(1,2); // error d.Foo(1,2,3); // error -----------------------------------
I don't understand why the functions "virtual void Foo(int, int)" and "void Foo(int, int, int)" are hidden by Derived::Foo(int) ? My opinion was that a derived class is always inheriting all functions of a base class and can additionally override them for a specific purpose like Foo(int).
To bring the other Base::Foo overloads into scope Sutter is using the statement
using Base::Foo;
within the Derive class.
Thank you for your answers.
Greeting, Chris
Regarding the issue of function hiding it does not really matter whether the
function is declared virtual or not. See section 23.7 of the FAQ.
HTH
Chris This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Jacek Dziedzic |
last post by:
Is it valid to use a "using namespace foo" (as opposed to
using foo::bar which I'm sure is legal) within a class
declaration? My compiler rejects it, but I've been told it's
valid.
Can anyone...
|
by: beliavsky |
last post by:
Many of my C++ programs have the line
using namespace std;
but the "Accelerated C++" book of Koenig and Moo has many examples
where the library names are included one at a time, for example
...
|
by: Douglas |
last post by:
**** Post for FREE via your newsreader at post.usenet.com ****
Hello,
The following code does not compile if line 3 is uncommented "using
namespace std".
I do not understand it. Could...
|
by: john.burton.email |
last post by:
I've done some extensive searching and can't seem to find an answer to
this -
Is it correct to using "using" with templates, for example:
using std::vector;
Or do I need to specify the type...
|
by: Jacky Yuk |
last post by:
Hi all,
I am new to c++ but using c for long time. Recently, I created a MFC
GUI project by VC/C++ 6.0. Everything was fine until I wanted to use
"template":
template <typename T>
class...
|
by: Andreas Müller |
last post by:
Hi all,
I have a class SwitchCursor, that implements IDisposable. Is it legal
to use an object that is not assigned to a reference inside a using
statement like this:
using(new...
|
by: Geri Reshef |
last post by:
Many times I find code examples in the internet which don't have the "using" statements needed to run them, and without it the compilation fails.
Is there a way to find the correct "using" statement...
|
by: Pep |
last post by:
Is it best to include the code "using namespace std;" in the source or
should each keyword in the std namespace be qualified by the namespace tag,
such as
std::cout << "using std namespace" <<...
|
by: Steve Pope |
last post by:
Compiling the following works on my system:
file main.cpp:
#include <iostream>
namespace space {
int foo;
}
|
by: samjnaa |
last post by:
Please check for sanity and approve for posting at python-dev.
In Visual Basic there is the keyword "with" which allows an object-
name to be declared as governing the following statements. For...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
|
by: jack2019x |
last post by:
hello, Is there code or static lib for hook swapchain present?
I wanna hook dxgi swapchain present for dx11 and dx9.
| |