- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
让我先说明我的意图。在过去 (C++) 时代,我们会有如下代码:
class C
{
public:
enum {SOME_VALUE=27};
};
然后我们可以在整个代码中使用 SOME_VALUE
作为编译时间常数,并且无论编译器在何处看到 C::SOME_VALUE
,它都会插入文字 27。
如今,将代码更改为以下内容似乎更容易接受:
class C
{
public:
static constexpr int SOME_VALUE=27;
};
这看起来更简洁,为 SOME_VALUE
提供了明确定义的类型,并且似乎是 C++11 的首选方法。 (至少对我来说不可预见的)问题是,这也会导致需要将 SOME_VALUE
设置为外部的情况。也就是说,在某个cpp文件的某处,我们需要添加:
constexpr int C::SOME_VALUE; // Now C::SOME_VALUE has external linkage
导致这种情况的情况似乎是在使用对 SOME_VALUE
的 const 引用时,这在 C++ 标准库代码中经常发生(请参阅本问题底部的示例)。顺便说一下,我使用 gcc 4.7.2 作为我的编译器。
由于这种困境,我不得不重新定义 SOME_VALUE
为枚举(即老派),以避免必须为某些人添加定义到 cpp 文件,但是不是我所有的静态 constexpr 成员变量。有没有办法告诉编译器 constexpr int SOME_VALUE=27
意味着 SOME_VALUE
应该被视为 only 作为编译时间常数和从来没有外部链接的对象?如果您看到与它一起使用的 const 引用,请创建一个临时引用。如果你看到它的地址被占用,如果这是需要的话,生成一个编译时错误,因为它是一个编译时间常数,仅此而已。
这里有一些看似良性的示例代码,导致我们需要在 cpp 文件中添加 SOME_VALUE
的定义(再次使用 gcc 4.7.2 测试):
#include <vector>
class C
{
public:
static constexpr int SOME_VALUE=5;
};
int main()
{
std::vector<int> iv;
iv.push_back(C::SOME_VALUE); // Will cause an undefined reference error
// at link time, because the compiler isn't smart
// enough to treat C::SOME_VALUE as the literal 5
// even though it's obvious at compile time
}
在文件范围的代码中添加以下行将解决错误:
constexpr int C::SOME_VALUE;
最佳答案
作为记录,static constexpr
版本将像您在 C++17 中所期望的那样工作。来自 N4618 附件 D.1 [depr.static_constexpr] :
D.1 Redeclaration of
static constexpr
data members [depr.static_constexpr]For compatibility with prior C++ International Standards, a
constexpr
static data member may be redundantly redeclared outside the class with no initializer. This usage is deprecated. [Example:
struct A {
static constexpr int n = 5; // definition (declaration in C++ 2014)
};
constexpr int A::n; // redundant declaration (definition in C++ 2014)
—end example]
允许这样做的相关标准文本是 N4618 9.2.3 [class.static.data]/3 :
[...] An inline static data member may be defined in the class definition and may specify a brace-or-equal-initializer. If the member is declared with the
constexpr
specifier, it may be redeclared in namespace scope with no initializer (this usage is deprecated; see D.1). [...]
这与引入同一事物的非 constexpr
版本的机制相同,inline static data members .
struct A {
static inline int n = 5; // definition (illegal in C++ 2014)
};
inline int A::n; // illegal
关于c++ - enum vs constexpr 用于类中的实际静态常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22867654/
在 ubuntu gcc 8.0 中: void bar(){} constexpr int foo(int a) { if (a <=0 ) bar(); retur
考虑一个在运行时只包装一个值的类: template class NonConstValue { public: NonConstValue(const Type& val)
在试验 constexpr 函数和模板(以及非类型模板参数)时,我偶然发现了一个现象,我无法理解是哪条规则使它生效。 所以根据 constexpr-s 的规则,我的问题本质上是“为什么会发生这种情况”
我正在阅读 Nicolai M. Josuttis 所著的“C++ 17 The Complete Guide”一书,无法理解以下示例 auto squared1 = [](auto val) con
(使用 g++ 7.0 主干。) 给定以下“类型到值包装”实用程序... template struct type_wrapper { using type = T; }; // "Wraps" a
我编写了一些代码,它能够根据调用站点提供与给定函数关联的字符串(通过函数指针和并行数组的tuple)来分派(dispatch)给函数。 dispatch 函数不直接接受字符串,而是接受 Callabl
如果我想使用一些方便的东西,比如 make_array 我没有机会先声明我的数组,然后再像“早些时候”那样进行定义,因为我的 var 类型不可用定义前。 所以我找到了这个答案: Undefined r
使用 gcc (HEAD 7.0.0 201612) 我惊讶地发现这有效: constexpr long value(const char *definition) { if (definit
我有这个片段。 #include #include struct JustStr { JustStr(const std::string& x) : val(x) {} stati
我找不到任何关于新 C++17 if 初始化语法的信息和“constexpr if”在: http://open-std.org/JTC1/SC22/WG21/docs/papers/2016/p01
考虑以下函数: template auto concatenate(std::array &data1, std::array &data2) { std::array result;
假设我有以下对象: #include class Foo { public: constexpr Foo() {}; constexpr std::string foo() cons
我正在尝试使用 https://github.com/gdelugre/literal_ipaddr它说它是一个 C++17 constexpr implementation of inet_addr
我想重新定义unique_ptr用一个特殊的析构函数。因此,我使用以下代码尝试模仿 unique_ptr 的一些构造函数.遗憾constexpr施 worker 员拒绝 build ,我不知道为什么。
我想用结构名称的哈希值初始化一个结构成员。 constexpr uint32_t myHash(const char* const data) { //Some code for hash r
我正在尝试编译 C++ 库(使用 gcc 5.3.1-14ubuntu2)并遇到此类错误: > In file included from > /root/pitchfork/workspace/un
设置: 我有一个使用 SIMD 内部函数的函数,我想在一些 constexpr 函数中使用它。 为此,我需要将其设为 constexpr。但是,SIMD 内在函数没有标记为 constexpr,编译器
这是一个简化的代码示例,旨在生成任意值序列(在 std::iota 的意义上)和在它们之上的不同类别的迭代器: struct delta { template void inc(I&
考虑以下函数: template auto concatenate(std::array &data1, std::array &data2) { std::array result;
我偶然发现了调用非 constexpr 函数的 constexpr 模板函数:在以下代码段中,由于调用了非 constexpr set,bar 无法按预期编译,但 foo 可以编译。谁能告诉我 foo
我是一名优秀的程序员,十分优秀!