gpt4 book ai didi

C++ 在哪里初始化静态常量

转载 作者:IT老高 更新时间:2023-10-28 11:51:06 45 4
gpt4 key购买 nike

我有课

class foo {
public:
foo();
foo( int );
private:
static const string s;
};

在源文件中初始化字符串s的最佳位置在哪里?

最佳答案

one 编译单元(通常是 .cpp 文件)中的任何地方都可以:

foo.h

class foo {
static const string s; // Can never be initialized here.
static const char* cs; // Same with C strings.

static const int i = 3; // Integral types can be initialized here (*)...
static const int j; // ... OR in cpp.
};

foo.cpp

#include "foo.h"
const string foo::s = "foo string";
const char* foo::cs = "foo C string";
// No definition for i. (*)
const int foo::j = 4;

(*) 如果 i 用于除整型常量表达式以外的代码,则根据标准,您必须在类定义之外定义 i(如 j 是) .有关详细信息,请参阅下面 David 的评论。

关于C++ 在哪里初始化静态常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2605520/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com