E,g
class Test {
public:
void setVal(const std::string& str) {
this.isVal = str; //This will error out
}
private:
string isVal;
};
|
|
E,g
|
|||
|
|
|
|
In C++, |
||
|
|
|
|
For design scope you can use so : Test::isVal = str; |
||
|
|
|
|
You also don't really need to use
|
||
|
|
|
Adding to Chris's answer, you can also do:
However, it's better to do what Chris said, as it is more orthodox. This is just illustrating that you need to de-reference the pointer before calling methods on it. |
||||||||||
|