c – std :: apply和constant表达式?

我在 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,所有constexpr函数都必须对constexpr都有效.

一个constexpr文字的提议,它将字符作为非类型的模板参数传递.然后“hello”_bob可以直接扩展到参数包.

另一种方法是可以通过std :: integral_constant< T,t>通过一些机制,像我的索引器一样.那么转换为T是constexpr,即使变量不是.这并不能帮助你对序列的“你好”.

相关文章

本程序的编译和运行环境如下(如果有运行方面的问题欢迎在评...
水了一学期的院选修,万万没想到期末考试还有比较硬核的编程...
补充一下,先前文章末尾给出的下载链接的完整代码含有部分C&...
思路如标题所说采用模N取余法,难点是这个除法过程如何实现。...
本篇博客有更新!!!更新后效果图如下: 文章末尾的完整代码...
刚开始学习模块化程序设计时,估计大家都被形参和实参搞迷糊...