2

我一直在尝试新的模块功能,但我无法导出全局常量。导出似乎编译得很好,但是在导入编译器时抱怨没有声明常量。我的代码:

测试.cpp

export module test;

export struct my_type { int x, y; };
export constexpr int my_constant = 42;
export int my_function() { return my_constant; }

主文件

import test;

int main() {
    my_type t{1, 2};
    int i = my_function();
    int j = my_constant; // <- error here
}

我究竟做错了什么?我在 Linux 上使用 g++ 11.1.0:g++-11 -std=c++20 -fmodules-ts test.cpp main.cpp -o main

错误信息是:error: ‘my_constant’ was not declared in this scope

4

2 回答 2

4

const 限定变量默认具有内部链接,因此可能需要将其写为

export extern const int my_constant = 42;

根据https://en.cppreference.com/w/cpp/language/storage_durationexport定义应该使变量具有外部链接,因此您可能遇到了 C++20 尚未完全实现的角落之一。

于 2021-05-17T14:19:56.890 回答
0

只需使用inline

export inline constexpr int my_constant = 42;
于 2021-05-22T01:46:11.550 回答