📜  C++中的std :: is_literal_type及其示例

📅  最后修改于: 2021-05-30 11:29:16             🧑  作者: Mango

C++ STL的std :: is_literal_type模板位于< type_traits >头文件中。 C++ STL的std :: is_literal_type模板用于检查T是否为字面量类型。如果T是字面量类型,则返回布尔值true,否则返回false。

头文件:

#include

模板:

template< class T >
struct is_literal_type;

句法:

std::is_literal_type::value

参数:模板std :: is_literal_type接受单个参数T(Trait类),以检查T是否为字面量类型。

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

  • True:如果类型T是字面量类型。
  • False:如果类型T不是字面量类型。

下面是在C / C++中演示std :: is_literal_type:的程序:

程序:

// C++ program to illustrate
// std::is_literal_type
#include 
#include 
using namespace std;
  
// Declare Classes
class X {
};
  
class Y {
  
    // Destructor
    ~Y() {}
};
  
// Declare structures
struct A {
    int m;
};
  
struct B {
    virtual ~B();
};
  
// Driver Code
int main()
{
  
    cout << boolalpha;
  
    // Check if int is literal type?
    cout << "int: "
         << is_literal_type::value
         << endl;
  
    // Check if class X is literal type?
    cout << "class X: "
         << is_literal_type::value
         << endl;
  
    // Check if class Y is literal type?
    cout << "class Y: "
         << is_literal_type::value
         << endl;
  
    // Check if int* is literal type?
    cout << "int*: "
         << is_literal_type::value
         << endl;
  
    // Check if struct A is literal type?
    cout << "struct A: "
         << is_literal_type::value
         << endl;
  
    // Check if struct B is literal type?
    cout << "struct B: "
         << is_literal_type::value
         << endl;
  
    return 0;
}
输出:
int: true
class X: true
class Y: false
int*: true
struct A: true
struct B: false

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

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