摘要: 样例如下: #include <iostream> class B { public: int Fun() { return 100; } } class A { public: B* CreateB() //new了个B对象 { return new B(); } } int main() { A 阅读全文
posted @ 2023-09-01 15:14 夕西行 阅读(28) 评论(0) 推荐(0) 编辑