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

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

void Human::print() const {
    printf("My name is %s and I am %d years old\n", name_.c_str(), age_);
}