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

实例化对象

 // 实例化一个Student对象stu

    Student stu = new student ;这样为什么不可以

 cout << stu.m_iAge<< "student's m_strName is " <<stu.m_strName << endl

通过cout打印stu对象的数据成员可以这样吗,为什么

正在回答

2 回答

实例化时调用其构造函数,比如class A,实例化时就先定义
  A a=new A();

你那样直接对类本身操作,不能

1 回复 有任何疑惑可以回复我~
#1

liuzhiwei 提问者

非常感谢!
2015-05-23 回复 有任何疑惑可以回复我~

#include <iostream>

#include <string>

using namespace std;


/**

  * 定义类:Student

  * 数据成员:名字、年龄

  */

    class Student

{

public:

    // 定义数据成员名字 m_strName 和年龄 m_iAge

    string m_strName;

    int m_iAge;

};


int main()

{

    // 实例化一个Student对象stu

    Student stu;

    // 设置对象的数据成员

    stu.m_strName = "慕课网";

    stu.m_iAge = 2;

    

    // 通过cout打印stu对象的数据成员

    cout << stu.m_strName << " " <<stu. m_iAge<< endl;

    return 0;

}


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

举报

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

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

进入课程

实例化对象

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