2个回答
展开全部
#include<iostream>
using namespace std;
class Person
{
public:
void Set(int a){
this.a=a; //a代表Set参数中的a,this.a代表类中的a,即把参数a传递给类的数据成员a
} //this即代表本类。
void print(){
cout <<a<<endl;
}
private:
int a;
};
int main()
{
Person p;
p.Set(4);
p.print();
return 0;
}
using namespace std;
class Person
{
public:
void Set(int a){
this.a=a; //a代表Set参数中的a,this.a代表类中的a,即把参数a传递给类的数据成员a
} //this即代表本类。
void print(){
cout <<a<<endl;
}
private:
int a;
};
int main()
{
Person p;
p.Set(4);
p.print();
return 0;
}
本回答被网友采纳
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询