gpt4 book ai didi

c++ - C++ 构造函数中前导下划线的含义是什么?

转载 作者:可可西里 更新时间:2023-11-01 18:42:33 25 4
gpt4 key购买 nike

好吧,我不是一个非常有经验的 C++ 程序员,但我想知道以下构造函数的参数中的下划线的意义是什么?

class floatCoords
{
public:
floatCoords(float _x, float _y, float _width, float _height)
: x(_x), y(_y), width(_width), height(_height)
{

}
float x, y, width, height;
...

最佳答案

没什么特别的。他只是这样命名,以区分成员变量和参数名称。

下划线是 C++ 标识符中的有效字符。

关于c++ - C++ 构造函数中前导下划线的含义是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1591217/

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