gpt4 book ai didi

c++ - 使用参数和 this 关键字时的评估顺序

转载 作者:行者123 更新时间:2023-11-28 06:18:28 25 4
gpt4 key购买 nike

在下面描述的函数中使用关键字 this 和参数时的求值顺序是什么:

bool isObject(MyClass& a)
{
if (&a==this) return true;
else return false;
}

是否等同于

if (this==&a)

哪个会使 == 运算符可交换指针?此片段取自 cplusplus.com教程。

最佳答案

== 运算符确实总是可交换的,除非您重载了它。所以(除非重载)你可以安全地改变

if (&a==this) return true;
else return false;

return this == &a

return &a == this

关于c++ - 使用参数和 this 关键字时的评估顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29784913/

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