class관련하여 간단한 질문

asleea의 이미지

-----------------test2.h---------------------------
class Date
{
private:
	int year;
 
public:
	Date(int year){this->year = year;}
	int getyear(){return year;}
	void setyear(int year){this->year = year;}
};	
----------------test1.h----------------------------
#include"test2.h"
 
class Person
{
private:
	int id;
	Date birthday;
public:
	Person(int id, int year)
		:birthday(year)
	{
		this->id = id;
	}
	Date getbirthday(){return birthday;}
 
};
------------------------------------------------------
#include<iostream>
#include"test1.h"
 
using namespace std;
 
int main()
{
	Person person(07122304, 1988);
	cout << person.getbirthday().getyear()<< endl;
	person.getbirthday().setyear(2012);
	cout << person.getbirthday().getyear() << endl;
	return 0;
}

오류는 안뜨는데 year값이 setyear을 해준 후 에도 1988이라고 뜨는데 왜 안바뀌는 걸까요 .?
Person에 Date를 포인터로바꾸고 getbirthday()도 리턴 값을 포인트 Date형으로 바꾸어서 포인터로 데이터를 주고 받으면 set을 이용하면 값이 변하던데
의문이 들어서 그냥 데이터를 주고 받게 바꾸어 주었더니 변화가 없네요 왜 그런지 설명 좀 부탁드릴께요 .ㅜ

익명 사용자의 이미지

getbirthday() 함수가 포인터가 아닌 복사된 클래스를 리턴하기 때문입니다.

함수가 리턴될 때 임시적인 Date 클래스가 복사되어 생성되는 것이죠... 멤버 변수인 birthday와는 별개의 객체입니다.

포인터를 이용할 경우 실제 birthday의 포인터이기 때문에 변경이 적용이 되는 거구요.

parkon의 이미지

윗 분이 이유는 잘 설명해 주셨고요,
참고로 포인터 안써고 원하시는 (year 값이 바뀌는) 결과를 얻으려면 레퍼런스를 쓰시면 됩니다.
즉 Person class에서

	//Date getbirthday(){return birthday;}
	Date& getbirthday(){return birthday;}

이런 식으로요.