Student.cpp 189 Bytes
Newer Older
刘睿博's avatar
ver 1.0  
刘睿博 committed
1 2 3 4 5 6 7 8 9 10
#include "Student.hpp"

Student::~Student() {
    printf("Student destructor called\n");
}

void Student::print() const {
    Human::print();
    printf("I'm from %s\n", school_.c_str());
}