课程
/后端开发
/C++
/C++远征之封装篇(上)
老师调用拷贝函数用的是栈的方式,用堆的方式该怎么做?
2019-08-31
源自:C++远征之封装篇(上) 6-7
正在回答
#include <iostream>
#include <string>
using namespace std;
class Student {
string m_strName;
int m_iAge;
};
int main(){
Student * p=new student();
stu->m_strName="慕课网";
stu->m_iAge=2;
cout <<"student name is: "<<stu->m_strName<<"\t"<<"student age is: "<<stu->m_iAge<<endl;
}
举报
封装--面向对象的基石,本教程力求帮助小伙伴们即学即会