gpt4 book ai didi

c++ - operator <- 在 C++ 中做什么?

转载 作者:太空宇宙 更新时间:2023-11-04 14:43:38 24 4
gpt4 key购买 nike

阅读很长的函数会很有趣!

int crazylongfun()
{
int x = -1;
foo b = -42;

//... 1000 lines below

if( b<-x)
{
std::printf("How did I get here there is no left arrow operator?\n");
}

return 0;
}

查看 foo 定义

struct foo
{
int x;

foo(int a) : x(a) {}

operator int() const
{
return x;
}
};

这可以很好地编译并产生所需的输出。允许这样做的机制是什么?

最佳答案

很简单,“小于负 X”。

if (b < -x)

在 1,000 行之后,我也有点斜眼了!

关于c++ - operator <- 在 C++ 中做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33292208/

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