📜  C++中的is_fundamental模板

📅  最后修改于: 2021-05-30 19:24:18             🧑  作者: Mango

C++ STL的is_fundamental模板用于检查类型是否为基本类型。它返回一个显示相同值的布尔值。

语法

template  struct is_fundamental;

参数:此模板接受单个参数T(特质类),以检查T是否为基本类型。

返回值:该模板返回一个布尔值,如下所示:

  • True :如果类型是基本类型。
  • False :如果类型是非基本类型。

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

程序1

// C++ program to illustrate
// is_fundamental template
  
#include 
#include 
using namespace std;
  
// main program
class GFG {
};
  
int main()
{
    cout << boolalpha;
    cout << "is_fundamental:"
         << '\n';
    cout << "GFG :"
         << is_fundamental::value
         << '\n';
    cout << "int :"
         << is_fundamental::value
         << '\n';
    cout << "int& :"
         << is_fundamental::value
         << '\n';
    cout << "int* :"
         << is_fundamental::value
         << '\n';
  
    return 0;
}
输出:
is_fundamental:
GFG :false
int :true
int& :false
int* :false

程序2

// C++ program to illustrate
// is_fundamental template
  
#include 
#include 
using namespace std;
  
// main program
int main()
{
    cout << boolalpha;
    cout << "is_fundamental:"
         << '\n';
    cout << "float:"
         << is_fundamental::value
         << '\n';
    cout << "float&:"
         << is_fundamental::value
         << '\n';
    cout << "float*:"
         << is_fundamental::value
         << '\n';
    cout << "double:"
         << is_fundamental::value
         << '\n';
    cout << "double&:"
         << is_fundamental::value
         << '\n';
    cout << "double*:"
         << is_fundamental::value
         << '\n';
  
    return 0;
}
输出:
is_fundamental:
float:true
float&:false
float*:false
double:true
double&:false
double*:false

程序3

// C++ program to illustrate
// is_fundamental template
  
#include 
#include 
using namespace std;
  
// main program
int main()
{
    cout << boolalpha;
    cout << "is_fundamental:"
         << '\n';
    cout << "char:"
         << is_fundamental::value
         << '\n';
    cout << "char&:"
         << is_fundamental::value
         << '\n';
    cout << "char*:"
         << is_fundamental::value
         << '\n';
    cout << "void :"
         << is_fundamental::value
         << '\n';
  
    return 0;
}
输出:
is_fundamental:
char:true
char&:false
char*:false
void :true
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”