微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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,即使变量不是.这并不能帮助你对序列的“你好”.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐