- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
以下简化的类在从 get() 返回值时执行不同的操作,具体取决于该类是被赋予 double 值还是数组作为模板参数:
#include "array"
#include "type_traits"
template<class T> class C
{
public:
T get(const int arg) {
return this->impl<T>(arg);
}
private:
template<class Out_T> typename std::enable_if<
std::is_same<Out_T, double>::value,
Out_T
>::type impl(const int arg) { return 1; }
template<class Out_T> typename std::enable_if<
std::is_same<Out_T, std::array<double, 3>>::value,
Out_T
>::type impl(const int arg) { return {1, 2, 3}; }
};
int main(int argc, char* argv[])
{
C<double> c1;
C<std::array<double, 3>> c2;
return c1.get(0) < c2.get(0)[1];
}
我应该如何编写 impl 的数组版本,以便支持数组中的任意数量的项?来自 g++-4.8.2 和 clang++-3.5 的错误没有帮助。我认为最接近的是:
template<
template<class...> class Out_T,
class... Args
> typename std::enable_if<
std::is_same<Out_T<Args...>, std::array<Args...>>::value,
Out_T<Args...>
>::type impl(const int arg) { return {1, 2, 3}; }
但 clang 仍然报错:
testi.cpp:8:20: error: no matching member function for call to 'impl'
return this->impl<T>(arg);
~~~~~~^~~~~~~
testi.cpp:31:28: note: in instantiation of member function 'C<std::__1::array<double, 3> >::get' requested
here
return c1.get(0) < c2.get(0)[1];
^
testi.cpp:13:7: note: candidate template ignored: disabled by 'enable_if' [with Out_T =
std::__1::array<double, 3>]
std::is_same<Out_T, double>::value,
^
testi.cpp:23:14: note: candidate template ignored: invalid explicitly-specified argument for template
parameter 'Out_T'
>::type impl(const int arg) { return {1, 2, 3}; }
^
最佳答案
更改模板声明:
template<
template<class...> class Out_T,
class... Args
>
到
template<
class Out_T
>
并将返回类型更改为:
typename std::enable_if<
detail::is_standard_array<Out_T>::value,
Out_T
>::type
其中 is_standard_array
是一个辅助模板,它返回一个 bool 值来确定类型是否为 std::array
:
namespace detail
{
template<class T>
struct is_standard_array : std::false_type { };
template<class T, std::size_t N>
struct is_standard_array<std::array<T, N>> : std::true_type { };
}
问题是 Args....
参数包没有提供给 impl()
的函数调用,因此编译器将其排除在外重载。您还可以为类 std::array
专门化 C
并适本地修改 get()
。
关于c++ - 当返回值是class或class<class>或class<class, class>等时如何使用enable_if?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24786077/
我试图找到在庞大的代码库中创建 NaN 的位置。是否有一些编译器标志或我可以用来在 NaN 上 panic 的东西,这样我就可以找到它在哪一行? 最佳答案 没有编译器标志。你能做的最好的事情就是把你的
A类 class ClassA { @Autowired class ClassB; } 类配置: @Configuration class TestConfi
我是一名统计学研究生,经常使用 R。我熟悉其他编程环境中的 OOP。我什至在各种定义用于存储数据的新类的统计包中看到了它的使用。 在我研究生生涯的这个阶段,我通常会为一些类作业编写一些算法——一些接收
我想要两个不同的网络摄像头视频输出,一个是普通的网络摄像头镜头,另一个是它的“镜像”版本。 cv2可以吗? import time, cv2 video=cv2.VideoCapture(0) a=0
我创建了一个可以通过两种方式过滤的图库。一个通过单击按钮,另一个通过搜索过滤器。过滤器工作完美,除了当 div 隐藏在过滤器上时,其余显示的 div 不会彼此相邻 float 。 这是过滤前的样子:
我们作为一个 4 人团队工作,我们的项目部署在 openshift我们使用 git 存储库 进行提交、推送和 pull 。当有人提交更多更改时,其他人必须 pull 它以在我们的系统中进行更新。但是从
我正在尝试扩展自动完成功能,以便在选择某个项目时显示辅助标签。例如,给定显示项目的自动完成功能,项目名称将显示在包含代码的输入框旁边的 span 标记中。 查看自动完成源代码,我发现过滤值的下拉列表是
我有一个包含歌曲、艺术家和专辑实体的核心数据。 歌曲有可选的一对一关系艺术家到艺术家实体和专辑到专辑实体这两个实体都与 Song 实体具有反向关系。 相册有可选的一对一关系艺术家到艺术家实体和可选的一
XmlSerializer正在调用 IList.Add()在我的课上,我不明白为什么。 我有一个自定义类(层次结构中的几个类之一),其中包含我使用 XmlSerializer 与 XML 相互转换的数
我们在 Web 应用程序中定义了此事件,它创建了一个名为 timelineEventClicked 的自定义触发器 canvas.addEventListener('click', function
有大量资源可用于使用 Swift(可达性)检查有效的 Internet 连接,以及在进行 API 调用时检查 httpResponse 的 statusCode 的方法,但是检查和处理这些的“正确”方
谁能告诉我是否可以在 Controller 规范中 stub params[] 值,以便 Controller 接受 stub 值作为 View 中的实际 params[] 值。 例如,我的观点有一个
我的问题是没有在 UserControl 中连接 DependencyProperties。这不是问题。当我将 UserControl 中的按钮绑定(bind)到 UserControl 的 Depe
如何#define 路径 L"C:\Windows\System32\taskmgr.exe"来处理宽字符 #define TASK_MGR "C:\\Windows\\System32\\taskm
我正在尝试使用 Jasmine 和 Sion 编写单元测试,但是在使用 RequireJs 加载模块时我很难找到以下等效项: sinon.stub(window, "MyItemView"); 使用
我有一个包含三个 div 的示例页面,如下所示: 当浏览器大小达到 md 点并且第二个 div 高于第一个 div 时,第三个 div 开始在第一个的右侧
我在 C++ 端有 CString cs,在 C# 端有 IntPtr ip,它通过编码(marshal)处理机制包含 cs 的值。 然后,我只需将需要的字符串作为 Marshal.PtrToStri
我是一名优秀的程序员,十分优秀!