C ++ 17模板构造函数类模板推论

时间:2018-11-28 07:22:08

标签: c++ templates c++17 template-deduction

这个问题与从构造函数参数中推导的新实现的C ++ 17类模板密切相关。

这实际上是我想要做的:

error: too few template arguments for class template 'A' 
int a = A<float>(1, "Hello!");

我得到:

B

实际上,可以保证第一个模板参数总是特别特殊,而麻烦的是使编译器(Apple的clang-1000.11.45.5或clang 7.0)推导出第二类模板参数alert(<?php echo $folder ?>);

我想知道我想念什么。

完整示例可在Wandbox上找到:https://wandbox.org/permlink/1Vh3LxMmdI6ZILEU

0 个答案:

没有答案