题目描述
填空,按要求输出
#include
using namespace std;
struct A
{
int v;
A(int vv):v(vv) { }
// 在这里输入你的代码
};
int main()
{
const A a(10);
const A * p = a.getPointer();
cout << p->v << endl;
return 0;
}
输入
无
输出
10
样例输出 Copy
10
#include <iostream>
using namespace std;
struct A
{
int v;
A(int vv) :v(vv) { }
// 在这里输入你的代码
const A* getPointer()const
{
return this;
}
};
int main()
{
const A a(10);
const A* p = a.getPointer();
cout << p->v << endl;
return 0;
}