OK. I'm not a very experienced C ++ programmer, but I was wondering what is the meaning of underscore in the arguments of the next constructor?
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;
...
Jorge
source
share