function::target_type
呼び出し可能オブジェクトの型情報を取得します。
const std::type_info& target_type() const;
解説
このメンバー関数は、*this が空の場合は typeid(void) を返します。それ以外の場合は、typeid(T) (T はターゲット オブジェクトの型) を返します。
使用例
// std_tr1__functional__function_target_type.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
std::function<int (int)> fn0(neg);
std::cout << std::boolalpha << "empty == " << !fn0 << std::endl;
std::cout << "type == " << fn0.target_type().name() << std::endl;
std::function<int (int)> fn1;
std::cout << std::boolalpha << "empty == " << !fn1 << std::endl;
std::cout << "type == " << fn1.target_type().name() << std::endl;
return (0);
}
必要条件
ヘッダー : <functional>
名前空間: std