C++ 中不允许 volatile + 对象组合?

问题描述 投票:0回答:1

我正在使用 TI TMS320F28335 的嵌入式编译器,因此我不确定这是否是一般的 C++ 问题(手头没有运行 C++ 编译器)或只是我的编译器。将以下代码片段放入我的代码中会出现编译错误:

"build\main.cpp", line 61: error #317: the object has cv-qualifiers that are not
compatible with the member function
        object type is: volatile Foo::Bar

当我注释掉下面的

initWontWork()
函数时,错误消失了。错误告诉我什么以及如何解决它,而不必求助于使用在
static
上运行的
volatile struct
函数?

struct Foo
{
    struct Bar
    {
        int x;
        void reset() { x = 0; }
        static void doReset(volatile Bar& bar) { bar.x = 0; } 
    } bar;
    volatile Bar& getBar() { return bar; }
    //void initWontWork() { getBar().reset(); }
    void init() { Bar::doReset(getBar()); } 
} foo;
c++ volatile
1个回答
11
投票

以同样的方式你不能这样做:

struct foo
{
    void bar();
};

const foo f;
f.bar(); // error, non-const function with const object

你不能这样做:

struct baz
{
    void qax();
};

volatile baz g;
g.qax(); // error, non-volatile function with volatile object

您必须对职能进行简历限定:

struct foo
{
    void bar() const;
};

struct baz
{
    void qax() volatile;
};

const foo f;
f.bar(); // okay

volatile baz g;
g.qax(); // okay

所以对你来说:

void reset() volatile { x = 0; }
© www.soinside.com 2019 - 2024. All rights reserved.