현재날짜로부터 1000일후 구하는건데

                CTime time=CTime::GetCurrentTime();
                time+=CTimeSpan(1000,0,0,0);
                CTime operator+(CTimeSpan time);
                CString str=time.Format(\"%A, %B %d, %Y\");
                str.Format(\"1000일뒤의 시간은 %d년 %d %d일 %d 입니다.\"),
                        time.GetYear, time.GetMonth, time.GetDay, time.GetAsSystemTime;

이렇게하면 오류는 안뜨는데 실행시키면 아무것도 안나옴..

어케된건지좀 알려줘

 ps. operator+ 이거 개념을 잘모르겠는데 개념좀 세워주면 안될까?