I am wondering if it is a good practice to use the same name for both a member variable and a function parameter in C++.
I come from a Java background, where this was common. I am wondering if in C++ there are drawbacks doing the following (the code works):
class Player
{
public:
void setState(PlayerState *state)
{
this->state = state;
}
private:
PlayerState *state;
}
Thank you for the answers. As I understand while it works, a better practice would be to put some kind of marker to differentiate member variable from function parameters like:
_ or m_
In some editors (like Qt Designer), member variables are shows in a different color. This is why it did not seem necessary to add any prefixes.
this->. I always use some kind of underscore before of after, but it is a matter of taste.set/getmembers, or you'll end up with quasi-classes [PDF].