C++/디딤돌 C++

특별한 멤버 this [디딤돌 C++]

언제나휴일 2016. 4. 14. 11:52
반응형

특별한 멤버 this [디딤돌 C++]

언제나 휴일 티스토리



특별한 멤버 this [디딤돌 C++]



Program.cpp



Program.cpp

//같은 이름의 전역 변수, 지역 변수, 멤버 필드 접근하기

 

#include <iostream>

using namespace std;

 

 

int num=1;

 

class Demo

{

    int num;

public:

    Demo(int num)

    {

        this->num = num;

    }

    void View(int num)const

    {

        cout<<"전역 변수 num:"<<::num<<endl;//스코프 연산자(::) 변수명

        cout<<"멤버 필드 num:"<<this->num<<endl; //this->멤버 필드명

        cout<<"지역 변수 num:"<<num<<endl;

    }

};

 

int main()

{

    Demo *demo = new Demo(2);

    demo->View(3);

    return 0;

}

* 디딤돌 C++  19. 특별한 멤버 this에서

돌 C++ 소개 가기

반응형