标题:类内初始化成员问题
取消只看楼主
xiaodu000
Rank: 2
来 自:黑龙江七台河
等 级:论坛游民
帖 子:52
专家分:42
注 册:2013-10-15
结帖率:83.33%
已结贴  问题点数:20 回复次数:1 
类内初始化成员问题
#include<iostream>
using namespace std;
class Student{
    private:
        string s[3];
    public:
        Student()
        {
            cout<<"use one"<<endl;
        }
        Student(string a,string b,string c)
        {
            s[0] = a;
            s[1] = b;
            s[2] = c;
            cout<<"use two"<<endl;
        }
        
};
int main()
{
    Student s1("123","1234","12345");
    Student s2();
    return 0;
}

帮忙看一下,为什么会跳过对象s2直接结束。
搜索更多相关主题的帖子: private include public return 
2014-06-03 17:43
xiaodu000
Rank: 2
来 自:黑龙江七台河
等 级:论坛游民
帖 子:52
专家分:42
注 册:2013-10-15
得分:0 
好吧,我只是想探究一下Student s2和Student s2()的不同。

写问题的同学不要手懒,有时候编译器说的东西胜过任何大牛!
2014-06-03 17:52



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-432422-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.425812 second(s), 9 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved