is_convertible Class
Testy, jeśli jeden typ jest konwertowany na inny.
template<class From, class To>
struct is_convertible;
Parametry
From
Typ do konwertowania.Ty
Typ, aby przekonwertować.
Uwagi
Wystąpienie predykat typu posiada true, jeśli wyrażenie To to = from;, gdzie from jest obiektem typu From, jest dobrze sformułowany.
Przykład
// std_tr1__type_traits__is_convertible.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
int main()
{
std::cout << "is_convertible<trivial, int> == " << std::boolalpha
<< std::is_convertible<trivial, int>::value << std::endl;
std::cout << "is_convertible<trivial, trivial> == " << std::boolalpha
<< std::is_convertible<trivial, trivial>::value << std::endl;
std::cout << "is_convertible<char, int> == " << std::boolalpha
<< std::is_convertible<char, int>::value << std::endl;
return (0);
}
Wymagania
Nagłówek: <type_traits>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<type_traits> Członkowie