C++:数字常量之前的预期标识符

发布于 2024-11-07 04:32:31 字数 443 浏览 1 评论 0原文

我正在尝试使用 MTL 编写一个小程序,但是当我尝试使 MTL 矩阵成为类的成员时,我收到了上述错误。

#include <boost/numeric/mtl/mtl.hpp>

class myClass
{
private:
    mtl::dense2D<double> Ke(6,6);
};

但是,在 main() 中使用相同的语句没有问题:

#include <boost/numeric/mtl/mtl.hpp>

int main(int argc, char** argv)
{
    mtl::dense2D<double> Ke(6,6);
    return 0;    
}

我对 C++ 很陌生,我不认为这与 MTL 真正相关,但这就是我发生错误的地方。

I'm trying to write a small program using MTL, but I'm getting the mentioned error when I try to make a MTL Matrix a member of a class.

#include <boost/numeric/mtl/mtl.hpp>

class myClass
{
private:
    mtl::dense2D<double> Ke(6,6);
};

However, there is no problem with the same statement in main():

#include <boost/numeric/mtl/mtl.hpp>

int main(int argc, char** argv)
{
    mtl::dense2D<double> Ke(6,6);
    return 0;    
}

I'm very new to C++, and I don't think this is really related to the MTL, but that's where the error occurred for me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

别再吹冷风 2024-11-14 04:32:31

您需要在构造函数的初始化列表中执行此操作。

class myClass {
    mtl::dense2D<double> Ke;
public:
    myClass() : Ke(mtl::dense2D<double>(6, 6)) { }
};

You need to do that in the constructor's initialiser list.

class myClass {
    mtl::dense2D<double> Ke;
public:
    myClass() : Ke(mtl::dense2D<double>(6, 6)) { }
};
似梦非梦 2024-11-14 04:32:31

因为当你声明时,

mtl::dense2D<double> Ke;

你只需要声明它,而不是创建它。这是 C++ 中构造函数的工作:

class myClass
{
public:
    myClass() // constructor
        : Ke(6, 6) // here we use the constructor initializer
    {
    }
private:
    mtl::dense2D<double> Ke; // declaration
};

Because when you declare

mtl::dense2D<double> Ke;

you're only supposed to declare it, not create it yet. This is the constructor's job in C++:

class myClass
{
public:
    myClass() // constructor
        : Ke(6, 6) // here we use the constructor initializer
    {
    }
private:
    mtl::dense2D<double> Ke; // declaration
};
所谓喜欢 2024-11-14 04:32:31

您无法在类范围内初始化变量,您需要在构造函数中进行初始化。改变这个:

class myClass
{
private:
    mtl::dense2D<double> Ke(6,6);
};

到这个--

class myClass
{
public:
    myClass() : Ke(6,6) { }
private:
    mtl::dense2D<double> Ke;
};

You can't initialize variable within the class scope, you need to do it in a constructor. Change this:

class myClass
{
private:
    mtl::dense2D<double> Ke(6,6);
};

to this --

class myClass
{
public:
    myClass() : Ke(6,6) { }
private:
    mtl::dense2D<double> Ke;
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文