猿问

哪位大神帮我看下这C++的代码中的空格该填什么,拜托了~

#include <iostream>

using namespace std;
class Test
{
Public:
Test(int aa){
______________
}
int Getx(){
_______________
}
private:
int x;
};
int main()
{
int m;
while(cin>>m)
{
Test t(m);
cout<<t.Getx()<<endl;
}
return 0;
}

死神的苹果
浏览 1273回答 1
1回答

萧欢打靶把营归

Test()为构造方法,结合参数应该填this.x=aa; Getx()填return this.x;
随时随地看视频慕课网APP
我要回答