Programming/C++ & Unreal
C++ 참조형 변수 Reference
장형이
2018. 3. 23. 21:31
Reference(참조) 형 변수.
포인터와 비슷하면서 다르다.
똑같은 변수를 이름만 복제해서 사용 한다고 생각하면 편하다.
void ReferTest(int& test){
test = 1;
}
main(){
int a;
ReferTest(a);
}
// Main : a = 1