Re: can the member function be compared?
- From: Bill Gates <NO1@xxxxxxxxxxxxx>
- Date: Fri, 26 Oct 2007 13:44:56 +0800
Igor Tandetnik wrote:
Alex Blekhman <tkfx.REMOVE@xxxxxxxxx> wrote:"Bill Gates" wrote:for example, there is a class as belowThe "&Foo::Func1 < &Foo::Func2" expression is perfectly
struct Foo
{
void Func1()
{}
void Func2()
{}
};
As known, &Foo::Func1 != &Foo::Func2 is right, but
&Foo::Func1 < &Foo::Func2
is illegal. So std::map< void ( Foo::* )() > can not be
defined. Are there
some other ways to get the greater and less relationship
between two member
functions?
legal if both `Func1' and `Func2' are within the same access
level block. I.e., if `Func1' and `Func2' are not separated
by "public", "protected" or "private" labels, then their
comparison is legal and valid.
Here's the quote from the Standard:
<quote>
5.9/2 Relational operators
If two pointers point to nonstatic data members of the
same object, or to subobjects or array elements of such
members, recursively, the pointer to the later declared
member compares greater provided the two members are not
separated by an `access-specifier' label (11.1) and provided
their class is not a union.
If two pointers point to nonstatic data members of the
same object separated by an `access-specifier' label (11.1)
the result is unspecified.
</quote>
Note that this paragraph talks about regular pointers to data members. It's not applicable to pointers-to-members. 5.9/1 is applicable though:
5.9/1 The operands shall have arithmetic, enumeration or pointer type.
Note further that, according to 3.9.2/1, pointer types and pointers-to-member types are different kinds of types.
If you are still not convinced, look at the stadnard definition for equality (==) operator:
5.10/1 The == (equal to) and the != (not equal to) operators have the same semantic restrictions, conversions, and result type as the relational operators...
5.10/2 In addition, pointers to members can be compared...
Bottom line - pointers-to-members cannot be compared for inequality.
It seems that the greater or less relationship can not be gotten...
So another question is like below,
/*
struct Foo
{
void Func1(){}
void Func2(){}
};
*/
void* ptr = &( &Foo::Func1 );
Is the above line legal? And what dose the ptr pointer point to?
Thanks!
.
- Follow-Ups:
- Re: can the member function be compared?
- From: Igor Tandetnik
- Re: can the member function be compared?
- From: Nathan Mates
- Re: can the member function be compared?
- References:
- can the member function be compared?
- From: Bill Gates
- Re: can the member function be compared?
- From: Alex Blekhman
- Re: can the member function be compared?
- From: Igor Tandetnik
- can the member function be compared?
- Prev by Date: Re: running C++ code with mutiple routines from matlab
- Next by Date: VC BUG
- Previous by thread: Re: can the member function be compared?
- Next by thread: Re: can the member function be compared?
- Index(es):
Relevant Pages
|