📜  C++中的is_empty模板

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

C++ STL的std :: is_empty模板用于检查给定类型是否为空。此方法返回一个布尔值,该值显示给定类型是否为空。

语法

template < class T > struct is_empty;

参数:该模板包含单个参数T(Trait类) ,该参数标识T是否为空类型。

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

  • True :如果类型为空。
  • False :如果类型不为空。

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

程序1 :使用结构

// C++ program to illustrate
// std::is_empty template
  
#include 
#include 
using namespace std;
  
// empty struct
struct GFG1 {
};
  
// struct with local variable
struct GFG2 {
    int variab;
};
  
// Struct with global variable
struct GFG3 {
    static int variab;
};
  
// Struct with virtual destructor
struct GFG4 {
    virtual ~GFG4();
};
  
// Driver code
int main()
{
    cout << boolalpha;
  
    cout << "Is GFG1 empty: "
         << is_empty::value
         << '\n';
    cout << "Is GFG2 empty: "
         << is_empty::value
         << '\n';
    cout << "Is GFG3 empty: "
         << is_empty::value
         << '\n';
    cout << "Is GFG4 empty: "
         << is_empty::value
         << '\n';
  
    return 0;
}
输出:
Is GFG1 empty: true
Is GFG2 empty: false
Is GFG3 empty: true
Is GFG4 empty: false

程序2 :使用类

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