<type_traits>

类模板
<type_traits>

std::is_convertible

template <class From, class To> struct is_convertible;
可转换为

用于识别隐式转换为.

该类继承自 integral_constant,根据T支持赋值U.


模板参数

从, 到
完整类型,或void(可能带 cv 限定),或者一个未知边界的数组。

成员类型

继承自 integral_constant
成员类型定义
value_typebool
类型true_type 或 false_type

成员常量

继承自 integral_constant
成员常量定义
truefalse

成员函数

继承自 integral_constant

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// is_convertible example
#include <iostream>
#include <type_traits>

struct A { };
struct B : A { };

int main() {
  std::cout << std::boolalpha;
  std::cout << "is_convertible:" << std::endl;
  std::cout << "int => float: " << std::is_convertible<int,float>::value << std::endl;
  std::cout << "int = >const int: " << std::is_convertible<int,const int>::value << std::endl;
  std::cout << "A => B: " << std::is_convertible<A,B>::value << std::endl;
  std::cout << "B => A: " << std::is_convertible<B,A>::value << std::endl;
  return 0;
}

输出
is_convertible:
int => float: true
int => const int: true
A => B: false
B => A: true


另见