为了账号安全,请及时绑定邮箱和手机立即绑定

我的哪儿有错为什么不通过

class Student
{
public:
    // 定义数据成员封装函数setName()
    void SteName(string_str){
        m_strName = _str;
    }
   
   
    // 定义数据成员封装函数getName()
   void getName()
   {
        return m_strName;
    }
   
   
//定义Student类私有数据成员m_strName
private:
   string m_strName;

};

int main()
{
    // 使用new关键字,实例化对象
 Student *str = new student();
    // 设置对象的数据成员
 str->setName("慕课网");
    // 使用cout打印对象str的数据成员
    cout << str->getName() << endl;
    // 将对象str的内存释放,并将其置空
       delete str;
       str = NULL;

str = NULL;
       return 0;
 
}


正在回答

2 回答

void 定义是无返回值的

还有不要忘了加 #include<stdlib.h>


system("pause");

0 回复 有任何疑惑可以回复我~

string getName()

{

    return m_strName;

}

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之封装篇(上)
  • 参与学习       103410    人
  • 解答问题       701    个

封装--面向对象的基石,本教程力求帮助小伙伴们即学即会

进入课程

我的哪儿有错为什么不通过

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信