gpt4 book ai didi

c++ - 静态整数、编译单元和三元运算符

转载 作者:行者123 更新时间:2023-11-30 00:57:15 25 4
gpt4 key购买 nike

//一些Cls.h

class SomeCls
{
static const int PERIOD_ALARM_NORMAL = 5;
static const int PERIOD_ALARM_THRESH = 1;

void method()
{
bool b = true;
const int d = b ? PERIOD_ALARM_THRESH : PERIOD_ALARM_NORMAL;
}

} obj;

它将构建正常。现在取出 method() 实现并将其放在 cpp 文件中:

 //SomeCls.cpp
#include "SomeCls.h"

void SomeCls::method()
{
bool b = true;
const int d = b ? PERIOD_ALARM_THRESH : PERIOD_ALARM_NORMAL;
}

为什么先生。链接器说

undefined reference to SomeCls::PERIOD_ALARM_NORMAL' undefined
reference to
SomeCls::PERIOD_ALARM_THRESH'

?

谢谢

编辑:在我看来,在 .h 内部,三元运算符将 static const ints 作为右值,但是......在 decalrative .h 之外,它将它们视为左值并需要定义。这是我从以下答案中设法理解的。感谢 Bada 编译器(一些 eabi linux 东西)

最佳答案

如果编译器看不到所有静态类常量的,那么您必须为它们提供定义,以便它们真正存储在某个地方。将以下内容添加到您的 cpp 文件中:

const int SomeCls::PERIOD_ALARM_NORMAL;
const int SomeCls::PERIOD_ALARM_THRESH;

关于c++ - 静态整数、编译单元和三元运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8568975/

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