Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
class Test {

      bool isVal() const {
          return isVal;
      }

  private:

      bool isVal;
};

On Compiling this file it says

testClass.cpp:9: declaration of `bool Test::isVal'

testClass.cpp:3: conflicts with previous declaration `bool Test::isVal()'

Although the same would work for java

class Test {

  private boolean isVal;

  public boolean isVal() {
      return isVal;
  }

}

Not sure why C++ cannot handle this.

share|improve this question

5 Answers

up vote 21 down vote accepted

Because C++ is not Java. You can take the address of a member:

&Test::isVal

So you can't have two members have the same name, except that you can overload member functions. Even if you could disambiguate that by some kind of cast, the next problem would already arise at other places.

In C++, we usually call member variables specially, like putting a m before their name. This avoids the problem elegantly:

class Test {
public:
    bool IsVal() const { return mIsVal; }
private:
    bool mIsVal;
};
share|improve this answer
... and, under the covers, the functions don't really have the same name anyway, since they're distinguished by class and argument signature. – Charlie Martin Jan 22 '09 at 2:10
4  
In C++, we usually call member variables specially, like putting a m before their name???? We do? Is that in the language spec? This is a perfect answer right up until that sentence and the example following it. – jmucchiello Jan 22 '09 at 3:45
2  
joe_mucchiello, go out and count all the popular name mangling, like "data_", "_data", "mData", "m_data", etc... . i think it justifies my use of "usually". – Johannes Schaub - litb Jan 22 '09 at 6:52
(IIRC) Microsoft did the m_ thing first. I'm currently maintaining code that does it, but I'm not a fan. I'm OK with trailing underscore for private data members but for some reason I don't like the m_ prefix. – Max Lybbert Jan 22 '09 at 8:23
litb- I don't think people name mangle because you can't have a method and a member variable with the same name. Thus it is not relevant to the question. Thus my point about the answer being a good technical answer until it tangents into a style issue. – jmucchiello Jan 22 '09 at 19:28
show 4 more comments

C++ applies name mangling to function names and global variables. Local variables are not mangled. The problem arises because in C you can access the address of a variable or a function (thus in C++ as well) e.g. :

struct noob{
    bool noobvar;
    void noobvar(){};
};

One can say, why not apply name mangling to local variables as well and then have an internal local representation such as

bool __noobvar_avar;
void __noobvar_void_fun;

and suppose that they receive the addresses during execution 0x000A and 0x00C0 respectively.

However if we write somewhere in the code:

&noob::noobvar

What should the program do ?

  1. return the address of the variable noobvar , i.e. 0x000A
  2. return the addres of the noobvar function , i.e. 0x00C0

You can see that since in C , and therefore in C++ , you can issue an "address of", it is not legal to have variables and functions with the same name within the same scope of resolution.

share|improve this answer

Functions in c/c++ are just pointers to a location in memory where the code is located, isVal (as a boolean) and isVal (as a function) are therefore ambiguous.

share|improve this answer

The quick answer is "because that's the way C++ works." C++ doesn't have a separate name space for member variables and member functions (ie, "methods") where Java (apparently, as I haven't tried this) does.

In any case, remember the old story about the guy who went to a doctor and said "Doc, it hurts when I do this." To which the doctor replied "well, don't do that!" This is a language peculiarity on its way to becoming a Dumb Programmer Trick.

share|improve this answer

If you have some reason to use same names for variable and method (maybe reduce naming for things have almost same purpose,etc??), I suggest that just naming them with different case:

class Test 
{
    private bool isVal;
    public bool ISVAL() 
    {   return isVal;  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.