472,145 Members | 1,614 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,145 software developers and data experts.

How to get rid of the annoying compiling warning on virtual function

Hi, I'm using Intel C++ compiler 9 to compiler a project. But, there are
a lot of warning saying like "virtual function override intended....". I
searched old messages in Google groups, someone already talk about this
issue. But I still confused..

This is the simple test code I copied from these messages
////////////////////////////////////////////////////////////////////
class Base {
virtual void foo(); //*position A*
};
class Derived1 : Base {
virtual void foo(int); //*position B*
};
class Derived2 : Derived1 {
void foo(int); //*position C*
};
////////////////////////////////////////////////////////////////////

The compiler will report two warnings:

Warning one:

warning #1125: function "Base::foo()" is hidden by "Derived1::foo" --
virtual function override intended?

Warning Two:

warning #1125: function "Base::foo()" is hidden by "Derived2::foo" --
virtual function override intended?

In my opinion, *overriding* is only occurred between two functions which
have the same signature and parameter list. It seems that the function
prototype are different between class Base and class Derived1.

I will be very appreciated if you can give me some explanation. Thank
you for reading my post.
Oct 9 '08 #1
10 12587
"asm23" <as********@gmail.comwrote in message
news:gc**********@aioe.org...
Hi, I'm using Intel C++ compiler 9 to compiler a project. But, there are a
lot of warning saying like "virtual function override intended....". I
searched old messages in Google groups, someone already talk about this
issue. But I still confused..

This is the simple test code I copied from these messages
////////////////////////////////////////////////////////////////////
class Base {
virtual void foo(); //*position A*
};
class Derived1 : Base {
virtual void foo(int); //*position B*
};
class Derived2 : Derived1 {
void foo(int); //*position C*
};
////////////////////////////////////////////////////////////////////

The compiler will report two warnings:

Warning one:

warning #1125: function "Base::foo()" is hidden by "Derived1::foo" --
virtual function override intended?

Warning Two:

warning #1125: function "Base::foo()" is hidden by "Derived2::foo" --
virtual function override intended?

In my opinion, *overriding* is only occurred between two functions which
have the same signature and parameter list. It seems that the function
prototype are different between class Base and class Derived1.

I will be very appreciated if you can give me some explanation. Thank you
for reading my post.
Unfortunately what you opionion is and what the facts are don't happen to
mesh on this. If you have the same function name, reguardless of signature,
you will hide a base function by the derived function. The best work around
is, name your function something different in your derived. Unless you
actually intended polymorphism, then fix the signatures and use the virtual
keyword in the base.

Oct 9 '08 #2
On 2008-10-09 13:57:15 -0400, "Jim Langston" <ta*******@rocketmail.comsaid:
"asm23" <as********@gmail.comwrote in message news:gc**********@aioe.org...
>Hi, I'm using Intel C++ compiler 9 to compiler a project. But, there
are a lot of warning saying like "virtual function override
intended....". I searched old messages in Google groups, someone
already talk about this issue. But I still confused..

This is the simple test code I copied from these messages
////////////////////////////////////////////////////////////////////
class Base {
virtual void foo(); //*position A*
};
class Derived1 : Base {
virtual void foo(int); //*position B*
};
class Derived2 : Derived1 {
void foo(int); //*position C*
};
////////////////////////////////////////////////////////////////////

The compiler will report two warnings:

Warning one:

warning #1125: function "Base::foo()" is hidden by "Derived1::foo" --
virtual function override intended?

Warning Two:

warning #1125: function "Base::foo()" is hidden by "Derived2::foo" --
virtual function override intended?

In my opinion, *overriding* is only occurred between two functions
which have the same signature and parameter list. It seems that the
function prototype are different between class Base and class Derived1.

I will be very appreciated if you can give me some explanation. Thank
you for reading my post.

Unfortunately what you opionion is and what the facts are don't happen
to mesh on this.
No, it's correct: a function in a derived class overrides a virtual
function in a base class with the same name and signature. A function
in a derived class with the same name as a function in a base class but
a different signature hides the one in the base class.
If you have the same function name, reguardless of signature, you
will hide a base function by the derived function. The best work
around is, name your function something different in your derived.
Unless you actually intended polymorphism, then fix the signatures and
use the virtual keyword in the base.
Agreed: hiding a function often reflects a design error.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Oct 9 '08 #3
On Oct 9, 10:39*am, Pete Becker <p...@versatilecoding.comwrote:
On 2008-10-09 13:57:15 -0400, "Jim Langston" <tazmas...@rocketmail.comsaid:
* If you have the same function name, reguardless of signature, you
will hide a base function by the derived function.

Agreed: hiding a function often reflects a design error.
To complement what you both said: any 'name' defined in the derived
class hides any member object or function having the same name in the
base; unless it's a virtual function and has a matching function
signature.

struct B
{
int object;
void func() {}
};

struct D : B
{
void object() {} // hides Base::object
int func; // hides Base::func
};

int main()
{
D d;
// d.object = 5; ERROR
// d.func(); ERROR
}
Ali
Oct 9 '08 #4
Pete Becker wrote:
On 2008-10-09 13:57:15 -0400, "Jim Langston" <ta*******@rocketmail.comsaid:
>"asm23" <as********@gmail.comwrote in message news:gc**********@aioe.org...
[...]
>>In my opinion, *overriding* is only occurred between two functions
which have the same signature and parameter list. It seems that the
function prototype are different between class Base and class Derived1.
[...]
>Unfortunately what you opionion is and what the facts are don't happen
to mesh on this.

No, it's correct: a function in a derived class overrides a virtual
function in a base class with the same name and signature. [...]
Yes, bat asm23 said that /only/ such a function would
override, and that, unless I'm missing something, is
not correct.
[...]
Schobi
Oct 9 '08 #5
ac******@gmail.com wrote:
On Oct 9, 10:39 am, Pete Becker <p...@versatilecoding.comwrote:
>On 2008-10-09 13:57:15 -0400, "Jim Langston" <tazmas...@rocketmail.comsaid:
>> If you have the same function name, reguardless of signature, you
will hide a base function by the derived function.
Agreed: hiding a function often reflects a design error.

To complement what you both said: any 'name' defined in the derived
class hides any member object or function having the same name in the
base; unless it's a virtual function and has a matching function
signature.

struct B
{
int object;
void func() {}
};

struct D : B
{
void object() {} // hides Base::object
int func; // hides Base::func
};

int main()
{
D d;
// d.object = 5; ERROR
// d.func(); ERROR
}
Ali
Hi, Ali. Thanks for supply an example for us. As Pete said, "If you have
the same function name, regardless of signature,you will hide a base
function by the derived function." This is a important rule I would
remember. Unless a derived class have a "virtual function has a matching
function name and signature"

Thanks for helping.
Oct 9 '08 #6
asm23 wrote:
Hi, Ali. Thanks for supply an example for us. As Pete said, "If you have
the same function name, regardless of signature,you will hide a base
function by the derived function." This is a important rule I would
remember. Unless a derived class have a "virtual function has a matching
function name and signature"
Just remember the member function has to be declared virtual in the base
class.

--
Ian Collins
Oct 9 '08 #7
Ian Collins wrote:
asm23 wrote:
>Hi, Ali. Thanks for supply an example for us. As Pete said, "If you have
the same function name, regardless of signature,you will hide a base
function by the derived function." This is a important rule I would
remember. Unless a derived class have a "virtual function has a matching
function name and signature"
Just remember the member function has to be declared virtual in the base
class.
Do you mean that this is the *precondition* to apply the rule?
Oct 9 '08 #8
asm23 wrote:
Ian Collins wrote:
>asm23 wrote:
>>Hi, Ali. Thanks for supply an example for us. As Pete said, "If you have
the same function name, regardless of signature,you will hide a base
function by the derived function." This is a important rule I would
remember. Unless a derived class have a "virtual function has a matching
function name and signature"
Just remember the member function has to be declared virtual in the base
class.
Do you mean that this is the *precondition* to apply the rule?
What I mean is you can't change a non-virtual base class member function
into a virtual member function in a derived class.

--
Ian Collins
Oct 9 '08 #9
Hendrik Schober wrote:
Pete Becker wrote:
>On 2008-10-09 13:57:15 -0400, "Jim Langston" <ta*******@rocketmail.com>
said:
>>"asm23" <as********@gmail.comwrote in message
news:gc**********@aioe.org...
[...]
>>>In my opinion, *overriding* is only occurred between two functions
which have the same signature and parameter list. It seems that the
function prototype are different between class Base and class Derived1.
[...]
>>Unfortunately what you opionion is and what the facts are don't happen
to mesh on this.

No, it's correct: a function in a derived class overrides a virtual
function in a base class with the same name and signature. [...]

Yes, bat asm23 said that /only/ such a function would
override, and that, unless I'm missing something, is
not correct.
To me, it also seems correct. Are you maybe mixing up overriding and hiding?

Oct 11 '08 #10
Rolf Magnus wrote:
Hendrik Schober wrote:
>Pete Becker wrote:
>>On 2008-10-09 13:57:15 -0400, "Jim Langston" <ta*******@rocketmail.com>
said:
"asm23" <as********@gmail.comwrote in message
news:gc**********@aioe.org...
[...]
In my opinion, *overriding* is only occurred between two functions
which have the same signature and parameter list. It seems that the
function prototype are different between class Base and class Derived1.
>
[...]

To me, it also seems correct. Are you maybe mixing up overriding and hiding?
I was thinking of hiding:

class Base {
public:
virtual void f(int);
};

class Derived : public Base {
public:
virtual void f(double);
};

But that's not overriding, so I was wrong.

Schobi
Oct 14 '08 #11

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

1 post views Thread by A. Saksena | last post: by
11 posts views Thread by Achintya | last post: by
7 posts views Thread by Frank-René Schäfer | last post: by
10 posts views Thread by Martin Vorbrodt | last post: by
3 posts views Thread by trialproduct2004 | last post: by
7 posts views Thread by dragoncoder | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.