C++ 헤더파일과 cpp파일 분리시 오류.......
제가 간단한 프로그램을 만들었는데, 헤더파일과 cpp파일을 분리하면 오류 메세지가 뜹니다.
(분리하기 전에는 오류가 없었습니다.)
제가 어느 부분에서 실수했는지 지적 좀 해주세요....
(오류내용은 캡쳐한거 첨부합니다.)
1.Date.h
#include
class Date
{
public:
int year;
int month;
int day;
Date(int a, int b, int c);
Date(string d);
void show();
int getYear();
int getMonth();
int getDay();
};
2.Date.cpp
#include
#include
#include "Date.h"
using namespace std;
Date::Date(int a, int b, int c)
{
year = a;
month = b;
day = c;
}
Date::Date(string d)
{
year = stoi(d.substr(0, 4));
month = stoi(d.substr(5, 6));
day = stoi(d.substr(7, 8));
}
void Date::show()
{
cout << year << "년" << month << "월" << day << "일" << endl;
}
int Date::getYear()
{
return year;
}
int Date::getMonth()
{
return month;
}
int Date::getDay()
{
return day;
}
3. main.cpp
#include
#include
#include "Date.h"
using namespace std;
int main()
{
Date birth(2014, 3, 20);
Date independenceDay("1945/8/15");
independenceDay.show();
cout << birth.getYear() << ',' << birth.getMonth() << ',' << birth.getDay() << endl;
}
첨부 | 파일 크기 |
---|---|
![]() | 12.94 KB |
위에붙은 의미없는 include는
위에붙은 의미없는 include는 의도된것인가요?
글작성시 사라졌나봅니다
Date.h에서 using namespace
Date.h에서
using namespace std;
가 빠져서 std namespace에 속하는 string을 못 찾는 것 같습니다.윗분 댓글에 한가지 추가하자면, 헤더 파일에 전역으로
윗분 댓글에 한가지 추가하자면, 헤더 파일에 전역으로 using namespace std;를 쓰는것은 추천하지 않습니다.
명시적으로 std::string으로 표기하는 것이 좋습니다.
댓글 달기