gpt4 book ai didi

C++ getter 函数 : const and non const

转载 作者:行者123 更新时间:2023-11-27 22:59:10 25 4
gpt4 key购买 nike

我正在用 C++ 编写带有机器人类的程序。下面的代码,当我尝试访问 getter 崩溃时

==19724== Stack overflow in thread 1: can't grow stack to 0xffe801ff8
==19724== Warning: client switching stacks? SP change: 0x15788828 --> 0xffeffe990
==19724== to suppress, use: --max-stackframe=68342473064 or greater
unknown location(0): fatal error in "trying": memory access violation at address: 0xffe801ff8: no mapping at fault address

这是 getter 代码:

#ifndef ROBOT_MAP
#define ROBOT_MAP

#include <iostream>
#include <stdio.h>
#include <cv.h>
#include <highgui.h>

class Robot{
protected :

int _y;
int _x;
public :

Robot(int x, int y): _x(x), _y(y){};

void setX(int x){_x = x;}
void setY(int y){_y = y;}

const int& getX() const {return _x;}
int& getX(){return const_cast<int&>(static_cast <Robot &>(*this).getX());}
const int& getY() const {return _y;}
int& getY(){return const_cast<int&>(static_cast <Robot &>(*this).getY());}


};
#endif

我正在尝试正确实现 const 和非 const 函数,因为我发现它在本网站的其他地方定义。返回 std::vector 的相同类型的 getter 可以工作,但一旦尝试 SomeRobot.getX(),它就会崩溃。

我一直在 valgrind 中运行它,但它并没有给我更多的信息。

那么导致它崩溃的代码有什么问题?

最佳答案

这里:

int& getX(){return const_cast<int&>(static_cast <Robot &>(*this).getX());}

由于 *this 被转换为 Robot &(即未更改),因此调用了非常量版本的 getX() ,使这个函数无限递归。它继续死于堆栈溢出。

相反,写

//                                                     vvvvv-- here
int& getX(){return const_cast<int&>(static_cast <Robot const &>(*this).getX());}

使 getX() 调用 getX() const。这同样适用于 getY()

强制性说明:对 const_cast 非常、非常、非常小心。这是为数不多的使用它有意义1并且不会非常危险的情况之一。不过,我不得不说 getX()getY() 的函数体足够短,我可以毫不犹豫地复制它们。

1 也就是说,如果函数再复杂点,还是有一定意义的。

关于C++ getter 函数 : const and non const,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29435467/

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