为什么要初始化此数据成员?

时间:2013-06-28 02:27:01

标签: c++ compiler-construction initialization default-constructor

我正在做一些测试...... 首先我发布我的源代码

.h文件

class Complex{
    private:
        int r = 0;//initializer
        int i ; 
    public:
        Complex(int , int I = 0);
        Complex();
        void print();
        void set(int, int I = 1);
        static void print_count();
        static int count;
};

.cpp文件

#include <iostream>
#include "complex.h"

int Complex::count = 1;

Complex::Complex(int R , int I){
    r = R;
    i = I;

    count++;

    std::cout << "constructing Complex object...count is " << Complex::count << std::endl;
}

Complex::Complex(){//default constructor
    std::cout << "default constructor is called..." << std::endl;
}

void Complex::print(){
    std::cout << "r = " << r << ';' << "i = " << i << std::endl;
    return;
}

void Complex::set(int R, int I /*= 2*/){//will be "redefaulting", an error
    r = R;
    i = I;
    return;
}

void Complex::print_count(){//static
    Complex::count = -1;//jsut for signaling...

    std::cout << "count is " << count << std::endl;
    return;
}

主要功能

#include <iostream>
#include "complex.h"

int main(){
    Complex d;//using default constructor
    d.print();

    /*Complex c(4, 5);*/
    Complex c(4);
    //c.print();

    /*c.set(2, 3)*/
    c.print();
    c.set(2 );
    c.print();

    std::cout << "count is " << c.count << std::endl;//c can access member data
    c.print_count();
    c.count++;//

    return 0;
}

考虑使用默认ctor

构造的Complex对象

因为在执行d.print()时使用0初始化数据成员r, r预计为0

而我不是,所以我认为它是垃圾值

但是当我测试时,会发生一件奇怪的事情。

如果我在主文件中消除了这个和以下代码行:

std :: cout&lt;&lt; “count is”&lt;&lt; c.count&lt;&lt; std :: endl; // c可以访问成员数据

然后d.print()会在我的系统上给出i的值为32767,我猜这是垃圾值;

但是一旦添加了该行,d.print()只会在我的系统上将i的值赋予0。

我不明白。我没有设置,修改或初始化我的价值,为什么它应该是0?

或者,它也是垃圾值?

或者,调用其中一个函数会破坏i的值?

这里的事情是如何在幕后运行的?

这是帮助。

1 个答案:

答案 0 :(得分:2)

0就像其他任何垃圾一样。不要错误地思考。

正式地,读取未初始化的变量是未定义的行为,所以没有必要对它进行思考:只需通过正确初始化变量来修复它。