gpt4 book ai didi

c++ - 为什么我们不能在类里面使用 "this"?

转载 作者:太空狗 更新时间:2023-10-29 23:21:02 26 4
gpt4 key购买 nike

E,g

class Test {
public:
void setVal(const std::string& str) {
this.isVal = str; //This will error out
}

private:

string isVal;
};

最佳答案

在 C++ 中,this 是一个指针(与引用相对)。所以你必须改为说 this->isVal

关于c++ - 为什么我们不能在类里面使用 "this"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/467851/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com