如何解决如何定义导出的常量?
我一直在尝试新的模块功能,但我无法导出全局常量。导出似乎编译得很好,但是在导入时编译器抱怨未声明常量。我的代码:
test.cpp
export module test;
export struct my_type { int x,y; };
export constexpr int my_constant = 42;
export int my_function() { return my_constant; }
main.cpp
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
解决方法
const 限定的变量默认具有内部链接,因此可能需要将其写为
export extern const int my_constant = 42;
根据 https://en.cppreference.com/w/cpp/language/storage_duration,export
定义应该使变量具有外部链接,因此您可能已经触及 C++20 尚未完全实现的角落之一。
只需使用 inline
export inline constexpr int my_constant = 42;
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。