摘要: #include <iostream> using namespace std; struct A { int v; A(int vv):v(vv) { } // 在此处补充你的代码 const A *getPointer() const { return this; } }; int main() 阅读全文
posted @ 2019-04-30 19:17 zzsama 阅读(641) 评论(1) 推荐(0) 编辑