當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


C++ std::is_convertible模板用法及代碼示例

<type_traits>頭文件中提供了C++ STL的std::is_convertible模板。 C++ STL的std::is_convertible模板用於檢查是否可以將任何數據類型A隱式轉換為任何數據類型B。它返回布爾值true或false。

頭文件:

#include<type_traits>

模板類別:

template< class From, class To >
struct is_convertible;

template< class From, class To >
struct is_nothrow_convertible;

用法:

is_convertible <A*, B*>::value;

參數:它采用A和B兩種數據類型:



  • A:它代表要轉換的參數。
  • B:它代表參數A隱式轉換的參數。

返回值:

  • True:如果將給定的數據類型A轉換為數據類型B。
  • False:如果給定的數據類型A沒有轉換為數據類型B。

下麵是演示C++中std::is_convertible的程序:

程序:

// C++ program to illustrate 
// std::is_convertible example 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Given classes 
class A { 
}; 
class B:public A { 
}; 
class C { 
}; 
  
// Driver Code 
int main() 
{ 
    cout << boolalpha; 
  
    // Check if class B is 
    // convertible to A or not 
    bool BtoA = is_convertible<B*, A*>::value; 
    cout << BtoA << endl; 
  
    // Check if class A is 
    // convertible to B or not 
    bool AtoB = is_convertible<A*, B*>::value; 
    cout << AtoB << endl; 
  
    // Check if class B is 
    // convertible to C or not 
    bool BtoC = is_convertible<B*, C*>::value; 
    cout << BtoC << endl; 
  
    // Check if int is convertible 
    // to float or not 
    cout << "int to float:"
         << is_convertible<int, float>::value 
         << endl; 
  
    // Check if int is convertible 
    // to const int or not 
    cout << "int to const int:"
         << is_convertible<int, const int>::value 
         << endl; 
  
    return 0; 
}
輸出:
true
false
false
int to float:true
int to const int:true

參考:http://www.cplusplus.com/reference/type_traits/is_convertible/




相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 std::is_convertible template in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。