c++函数能把对象作为参数吗?
发布网友
发布时间:2023-12-02 06:30
我来回答
共1个回答
热心网友
时间:2024-01-09 10:21
类的对象、
结构体
的对象
都是可以作为函数的参数的。
struct
tagStu{string
m_strName;string
m_strSex;}class
CManage{void
SetStu(tagStu
stu){
//
结构体m_tagStu.m_strName
=
stu.m_strName;m_tagStu.m_strSex
=
stu.m_strSex;}public:void
GetSex(){
return
m_tagStu.m_strSex;}private:tagStu
m_tagStu;}class
TestB{
CManage
m_mage;
string
GetSex(CManage
&mg){
string
strSex
=
msg.GetSex();
return
strSex;
}}