gpt4 book ai didi

c++ - 从函数返回 this 指针的重要用途是什么?

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

下面是一段奇特的代码:

class B
{
private:
int sum;

public:
B ()
{
sum = 0;
}

B& add (int number)
{
sum =+ number;
return *this;
}
};

int main ()
{
B obj;
obj.add (1).add (2).add (3). add (4);
}

好吧,从函数调用中返回 this 指针的“重要”用途是什么?

最佳答案

一个例子是;

class basic_ostream
: ...
{
basic_ostream& operator<<(bool n);

真的想要返回这个可以链接到;

std::cout << boolValue << std::endl;

关于c++ - 从函数返回 this 指针的重要用途是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9687949/

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