当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ std::is_member_function_pointer模板用法及代码示例


<type_traits>头文件中提供了C++ STL的std::is_member_function_pointer模板。 C++ STL的std::is_member_function_pointer模板用于检查T是否是指向非静态成员函数的指针。如果T是指向非静态成员函数的指针,则返回布尔值true,否则返回false。

头文件:

#include<type_traits>

模板类别:

template <class T>
struct is_member_function_pointer;

用法:

std::is_member_function_pointer::value 

参数:模板std::is_member_function_pointer接受单个参数T(Trait类),以检查T是否是指向非静态成员函数的指针。



返回值:此模板std::is_member_object_pointer返回一个布尔变量,如下所示:

  • True:如果类型T是指向非静态成员函数类型的指针。
  • False:如果类型T不是指向非静态成员函数类型的指针。

下面是演示C++中std::is_member_function_pointer的程序:

程序1:

// C++ program to illustrate 
// std::is_member_function_pointer 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Declare a structure 
class GFG { 
  
public:
    int gfg; 
}; 
  
class A { 
}; 
  
// Driver Code 
int main() 
{ 
  
    // Object to class GFG 
    int GFG::*pt = &GFG::gfg; 
    cout << boolalpha; 
  
    // Check if GFG* is a member function 
    // pointer or not 
    cout << "GFG*:"
         << is_member_function_pointer<GFG*>::value 
         << endl; 
  
    // Check if int GFG::* is a member 
    // function pointer or not 
    cout << "int GFG::* "
         << is_member_function_pointer<int GFG::*>::value 
         << endl; 
  
    // Check if int A::* is a member 
    // function pointer or not 
    cout << "int A::* "
         << is_member_function_pointer<int A::*>::value 
         << endl; 
  
    // Check if int A::*() is a member 
    // function pointer or not 
    cout << "int A::*() "
         << is_member_function_pointer<int (A::*)()>::value 
         << endl; 
  
    return 0; 
}
输出:
GFG*:false
int GFG::* false
int A::* false
int A::*() true

程序2:

// C++ program to illustrate 
// std::is_member_function_pointer 
#include <bits/stdc++.h> 
#include <type_traits> 
using namespace std; 
  
// Declare a structure 
struct A { 
    void fn(){}; 
}; 
  
struct B { 
    int x; 
}; 
  
// Driver Code 
int main() 
{ 
    void (A::*pt)() = &A::fn; 
    cout << boolalpha; 
  
    cout << "A*:"
         << is_member_function_pointer<A*>::value 
         << endl; 
  
    cout << "void(A::*)():"
         << is_member_function_pointer<void (A::*)()>::value 
         << endl; 
  
    cout << "B*:"
         << is_member_function_pointer<B*>::value 
         << endl; 
  
    cout << "void(B::*)():"
         << is_member_function_pointer<void (B::*)()>::value 
         << endl; 
  
    return 0; 
}
输出:
A*:false
void(A::*)():true
B*:false
void(B::*)():true

参考: http://www.cplusplus.com/reference/type_traits/is_member_function_pointer/




相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 std::is_member_function_pointer template in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。