더북(TheBook)

  9. 학생 정보를 저장할 구조체 student를 정의합니다. 이 구조체는 학생의 이름 name과 학생의 학급 정보를 담고 있는 standard 멤버를 가지고 있고, << 연산자를 이용한 표준 출력을 지원합니다.

struct student
{
    std::string name;
    int standard;
};

std::ostream& operator<<(std::ostream& os, const student& s)
{
    return (os << "[" << s.name << ", " << s.standard << "]");
}
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.