如何在类内定义constexpr函数?

发布于 2025-01-21 12:08:49 字数 452 浏览 0 评论 0原文

我有类,我想将const int数组定义为变量,因此我需要constexpr函数,但是我无法弄清楚为什么当函数为类成员时我的代码不编译。它仅在功能不在类外面时进行编译。

这是我的代码:

#include <stdint.h>

template<int T>
class Test
{
    constexpr uint32_t pow(uint32_t a, uint32_t b)
    {
        uint32_t c = 1;
        for (int i = 0; i < b; i++)
            c *= a;
        return c;
    }

    float arr[pow(2, T)][T];
}

int main()
{
    Test<4> test_class;
    return 0;
}

I have class and i want to define const int array as variable, so i need constexpr function but i cannot figure out why my code does not compiles when the function is class member. It only compiles when the function is outside the class.

Here is my code:

#include <stdint.h>

template<int T>
class Test
{
    constexpr uint32_t pow(uint32_t a, uint32_t b)
    {
        uint32_t c = 1;
        for (int i = 0; i < b; i++)
            c *= a;
        return c;
    }

    float arr[pow(2, T)][T];
}

int main()
{
    Test<4> test_class;
    return 0;
}

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

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

发布评论

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

评论(1

绿光 2025-01-28 12:08:49

阵列的大小必须在编译时已知。

由于POW是一种非静态方法,因此必须具有对象才能调用它,并且在编译时没有。

如果将其更改为静态方法,它将起作用:

template<int dim>
struct Test
{
    static constexpr int pow(int first, int second)
    {
        int out = 1;
        for (int i = 0; i < second; i++)
            out *= first;
        return out;
    }

    float arr[pow(2, dim)][dim];
};

int main()
{
    Test<2> tst;
}

The size of the array has to be known at compile time.

Since pow is a non static method you must have a this object in order to call it, and there is none at compile time.

If you change it to a static method it will work:

template<int dim>
struct Test
{
    static constexpr int pow(int first, int second)
    {
        int out = 1;
        for (int i = 0; i < second; i++)
            out *= first;
        return out;
    }

    float arr[pow(2, dim)][dim];
};

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