C++ 类中声明并定义静态常量字符串数组属性

#include <iostream>
using namespace std;

 

class Person {
   public:
    int id = 200;
    string name = "qiumc";
    // 在类中声明并定义静态常量字符串数组
    // char*改为string类型会报错
    // 没有constexpr的修饰会报错
    static constexpr const char* arrayAttribute[] = {"Hello123", "World123"};
};

 

int main(int argc, char const* argv[]) {
    Person p;
  
    // cout << Person::arrayAttribute << endl; 直接这种写法会报错,这是因为constexpr是在编译的时候求值,编译后根本就没有Person::arrayAttribute这个符号
    cout << Person::arrayAttribute[0] << endl;
    cout << Person::arrayAttribute[1] << endl;
    return 0;
}
 
 
 
posted @ 2021-11-07 15:36  邱明成  阅读(1545)  评论(0编辑  收藏  举报