摘要: #include "stdafx.h"#include class A{public: A(){ printf("A constructor\n");}};class B{public: B(){ printf("B constructor\n");} A a;};class C{... 阅读全文
posted @ 2015-08-26 09:48 曦花 阅读(377) 评论(0) 推荐(0) 编辑