📜  C++中的std :: is_function模板及其示例

📅  最后修改于: 2021-05-30 06:05:21             🧑  作者: Mango

C++ STL的std :: is_function用于检查给定的类型T是否为函数 。它返回布尔值true或false。以下是相同的语法:

头文件:

#include

句法:

template 
   
  struct is_function;

参数:模板std :: is_function接受单个参数T(Trait类)以检查T是否为函数。

返回值:

  • 是:如果T是函数类型。
  • False:如果T不是函数类型。

下面的程序说明了C++ STL中的std :: is_function模板:

程序1:

// C++ program to illustrate
// is_function template
  
#include 
#include 
using namespace std;
  
struct GeeksforGeeks {
    int func() const&;
};
  
template 
struct Computer {
};
  
template 
struct Computer {
    using member_type = B;
};
  
int GFG();
  
int main()
{
    cout << boolalpha;
    cout << is_function::value
         << endl;
    cout << is_function::value
         << endl;
    cout << is_function::value
         << endl;
    cout << is_function::value
         << endl;
  
    using A = Computer::member_type;
    cout << is_function::value
         << endl;
  
    return 0;
}
输出:
false
true
true
false
true

程式2:

输出:
true
false
false
true
true

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

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”