gpt4 book ai didi

c++ - std::apply 和常量表达式?

转载 作者:可可西里 更新时间:2023-11-01 15:46:26 24 4
gpt4 key购买 nike

我在 Wandbox 中尝试了以下代码:

#include <array>
#include <iostream>
#include <tuple>
#include <typeinfo>
#include <functional>
#include <utility>


int main()
{
constexpr std::array<const char, 10> str{"123456789"};
constexpr auto foo = std::apply([](auto... args) constexpr { std::integer_sequence<char, args...>{}; } , str);
std::cout << typeid(foo).name();
}

编译器告诉我 args... 不是常量表达式。怎么了?

最佳答案

函数参数不能被标记为constexpr。因此,您不能在需要常量表达式的地方使用它们,例如非类型模板参数。

要完成您尝试做的事情,需要基于模板参数进行某种编译时字符串处理。

关于c++ - std::apply 和常量表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40559721/

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