gpt4 book ai didi

c++ - 警告 : base class should be explictily initialized in the copy constructor

转载 作者:可可西里 更新时间:2023-11-01 18:36:56 33 4
gpt4 key购买 nike

我正在为 CUDA 处理编写一个矩阵类。

我编写了一个 vector 类(以下称为 Elements)并将其用于矩阵基数。

这是模板定义:

template <typename T, std::size_t M, std::size_t N>
class Matrix : public Elements< Elements< T, N >, M > {

}

需要注意的是Elements中没有动态分配任何东西类,也不在 Matrix类。

我得到一个 warning: base class ‘struct Elements<Elements<double, 2ul>, 2ul>’ should be explicitly initialized in the copy constructor复制构造函数中的警告。这是复制构造函数:

    DEVICE HOST
Matrix(const Matrix & that) {
for (std::size_t ind = 0; ind < M; ind++) {
for (std::size_t jnd = 0; jnd < N; jnd++) {
(*this)[ind][jnd] = that[ind][jnd];
}
}
}

我做错了什么?

最佳答案

您没有在复制构造函数中初始化基类。试试这个:

Matrix(const Matrix & that) : Elements<Elements<T, N>, M>(that) {
/* ... */
}

派生类的复制构造函数的初始化列表应该包含对基类复制构造函数的显式调用,就像所有其他构造函数一样,否则,基类将被默认初始化。

编辑:拥有私有(private)的会很方便

typedef Elements<Elements<T, N>, M> basetype;

在你的类定义中的某处。

关于c++ - 警告 : base class should be explictily initialized in the copy constructor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21139723/

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