Members vs method arguments access in C++

[亡魂溺海] 提交于 2019-12-30 07:08:57

问题


Can I have a method which takes arguments that are denoted with the same names as the members of the holding class? I tried to use this:

    class Foo {
        public:
            int x, y;
            void set_values(int x, int y)
            {
                x = x;
                y = y;
            };
    };

... but it doesn't seem to work.

Is there any way of accessing the the instance the namespace of which I'm working in, similar to JavaScript's this or Python's self?


回答1:


It's generally a good idea to avoid this kind of confusion by using a naming convention for member variables. For example, camelCaseWithUnderScore_ is quite common. That way you would end up with x_ = x;, which is still a bit funny to read out loud, but is fairly unambiguous on the screen.

If you absolutely need to have the variables and arguments called the same, then you can use the this pointer to be specific:

class Foo {
    public:
        int x, y;
        void set_values(int x, int y)
        {
            this->x = x;
            this->y = y;
        }
};

By the way, note the trailing semi-colon on the class definition -- that is needed to compile successfully.




回答2:


Yes, you should be able to write this using the "this" keyword (which is a pointer in C++):

class Foo {
    public:
        int x, y;
        void set_values(int x, int y)
        {
            this->x = x;
            this->y = y;
        }
}



回答3:


In C++ the current instance is referenced by the const pointer this.

class Foo {
    public:
        int x, y;
        void set_values(int x, int y)
        {
            this->x = x;
            this->y = y;
        };
};


来源:https://stackoverflow.com/questions/885136/members-vs-method-arguments-access-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!