摘要:
#include "stdafx.h"#include "stdio.h"#include "string.h"class Father{public: name() {printf("father name\n");}; virtual call() {printf("father call\n");}; };class Son: public Father{public: name() {printf("Son name\n");}; virtual call() {pr 阅读全文
posted @ 2012-10-16 22:57
DoubleLi
阅读(325)
评论(0)
推荐(0)