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

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

刘睿博's avatar
刘睿博 committed
7 8 9 10
char* Human::print() const {
    char* res = new char[100];
    sprintf(res, "My name is %s and I am %d years old\n", name_.c_str(), age_);
    return res;
刘睿博's avatar
ver 1.0  
刘睿博 committed
11
}