gpt4 book ai didi

c++ - 使用空默认构造函数时成员中存在垃圾值的问题

转载 作者:行者123 更新时间:2023-12-01 22:59:19 28 4
gpt4 key购买 nike

我正在尝试使用默认构造函数创建一个非常基本的类:

    class Point {
public:
Point() = default;//con 1
explicit Point(double x): x_axis(x), y_axis(0){}//con 2
Point(const Point &other) = default;
~Point() = default;
private:
double x_axis;
double y_axis;
}

当我尝试在 main() 函数中使用默认构造函数时,它会为 x_axis 生成一个随机垃圾值:

    Point p1;//generates random value
Point p2{};//works as intended

这是为什么呢?当我像这样使用另一个构造函数(con 2)时:

    explicit Point(double x = 0): x_axis(x), y_axis(0){}

它们都按预期工作。

  1. 为什么在没有括号的第一次尝试中,它生成了一个随机值,但 {} 有效,但在第二次尝试中它们都有效?
  2. 什么是使用 {} 调用默认构造函数?

最佳答案

这是因为第二个构造函数用值初始化成员变量,而第一个构造函数留下不确定值的成员变量。

要么:

class Point {
public:
Point() : x_axis{}, y_axis{} {} // instead of = default
...

class Point {
public:
Point() = default;

// ...
private:
double x_axis{}; // {} or
double y_axis = 0.0; // = 0.0
};

关于c++ - 使用空默认构造函数时成员中存在垃圾值的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72248443/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com