我一直在尝试新的(ish)C++14 变量模板功能,并在编译期间遇到了这个奇怪的错误(g++ 6.3.0,但也使用 8.1.0 进行了测试)
templated_variables.cpp:32:19: error: wrong number of template arguments (1, should be at least 1)
const std::string config_data<WantName> = "Name: grep";
还有比这更多的错误,但它们都是同一类。代码如下
#include <type_traits>
#include <string>
#include <iostream>
struct Want {};
struct WantName : Want {};
struct WantDir : Want {};
template<bool... values>
struct all_of : std::true_type {};
template<bool... values>
struct all_of<true, values...> : all_of<values...> {};
template<bool... values>
struct all_of<false, values...> : std::false_type {};
template <
typename Tag, typename ... Tags,
typename =
typename std::enable_if<
all_of<
std::is_base_of<Want, Tag>::value,
std::is_base_of<Want, Tags>::value...
>::value
>::type
>
const std::string config_data = config_data<Tag> + '\n' + config_data<Tags...>;
template <>
const std::string config_data<WantName> = "Name: grep";
template <>
const std::string config_data<WantDir> = "Directory: /usr/bin/";
int main() {
std::cout << config_data<WantDir, WantName> << '\n';
std::cout << config_data<WantDir> << '\n';
std::cout << config_data<WantName> << '\n';
}
似乎这里的问题是 SFINAE-style std::enable_if
,因为如果我删除它,这编译没有问题。config_data<Want*>
但奇怪的是,如果我删除with的每个实例config_data<Want*, Want>
(或其他一些Want
作为基础的类,我们也不会收到编译错误。
我的问题是,我怎样才能避免不得不
(a) 失去阻止此模板的用户传入随机类型作为模板参数的能力,或
(b) 要求在变量模板的每个实例化中使用不必要的基本参数。
我意识到在这个(人为的)例子中,(a)不是一个合理的问题。任何具有不实现其中一种特化的类型的模板实例化都将无法编译。但在一般情况下它肯定会是一个问题,它仍然没有解释为什么用一个有效的第一个参数、一个空的参数包和一个空白的默认参数来实例化模板会导致编译错误。