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

初始化列表问题

#include<iostream>

#include<string>

using namespace std;



class Student{

private:

string m_strName;

int m_iAge;

public:

Student() :m_strName("Name"), m_iAge(1){

cout << "初始化列表0" << endl;

}

Student(string name,int age):m_strName(name), m_iAge(age){

cout << "初始化列表" << endl;

}

void getName(){

cout << m_strName << endl;

}

void getAge(){

cout << m_iAge << endl;

}

};

int main(){

Student s1("Cjj",12);

s1.getName();

Student s2();

s2.getName();



}

//s2.getName(); 报错 expession must have class type.

这是为什么....

正在回答

1 回答

Student s2(); 把小括号去掉

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

Maseghini4089428 提问者

对对对 是对的
2017-05-17 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

初始化列表问题

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