gpt4 book ai didi

c++ - 修复使用非标量类型实例化模板时的编译错误

转载 作者:太空狗 更新时间:2023-10-29 20:53:12 25 4
gpt4 key购买 nike

   #include <limits>
#include <iostream>
using std::cerr;

template< typename T >
int get_max_if_integral()
{
if ( std::is_integral<T>::value ) return (int) std::numeric_limits<T>::max();
else return 0;
}

struct S {};

int main()
{
cerr<<"int: "<<get_max_if_integral<int>()<<"\n";
cerr<<"short: "<<get_max_if_integral<short>()<<"\n";
cerr<<"float: "<<get_max_if_integral<float>()<<"\n";
// cerr<<"S: "<<get_max_if_integral<S>()<<"\n";
}

这将返回所需的结果...

int: 2147483647
short: 32767
float: 0

但是,如果我取消注释最后一行,我会得到:

x.cpp: In instantiation of ‘int get_max_if_integral() [with T = S]’:
x.cpp:22:40: required from here
x.cpp:11:82: error: invalid cast from type ‘S’ to type ‘int’
if ( std::is_integral<T>::value ) return (int) std::numeric_limits<T>::max();

在这种情况下,我希望函数返回 0

最佳答案

我建议您将您的功能拆分为两个不同的功能,启用 SFINAE

template <typename T>
typename std::enable_if<true == std::is_integral<T>::value, int>::type
get_max_if_integral ()
{ return (int) std::numeric_limits<T>::max(); }

template <typename T>
typename std::enable_if<false == std::is_integral<T>::value, int>::type
get_max_if_integral ()
{ return 0; }

关于c++ - 修复使用非标量类型实例化模板时的编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43577865/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com