【C++的类】
2023-12-28 20:35:00
#include <iostream>
using namespace std;
class Person
{
int *age;
string &name;
public:
Person(int *age, string &name) : age(age), name(name){}
void show()
{
cout << *age << endl;
cout << name << endl;
}
};
class Stu
{
double *score;
Person p1;
public:
Stu(double *score, int *age, string &name) : score(score), p1(age, name){}
void show()
{
cout << *score << endl;
p1.show();
}
};
int main()
{
double scoreValue = 30.0;
int ageValue = 20;
string nameValue = "John";
Stu stu(&scoreValue, &ageValue, nameValue);
stu.show();
return 0;
}
文章来源:https://blog.csdn.net/jpk010820/article/details/135276569
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!