命名空间
变体
操作

C++ 中具有特殊含义的标识符: import (自 C++20 起)

来自 cppreference.com
< cpp
 
 
C++ 语言
 
 

[编辑] 用法

[编辑] 示例

export module foo;
 
import bar;   // imports all module interface units of module bar
import :baz;  // imports the so-named module partition baz of module foo
import <set>; // imports a synthesized header unit formed from header <set>

[编辑] 另请参阅