如何将一个模块拆分成多个文件

How to split a module into multiple files

我阅读了有关 c++ 中的模块的内容,但有些事情我真的无法理解该怎么做。我想知道如何使用当前的合并模块提案有效地将一个 c++ 模块拆分为多个文件。

假设我有两个 类 想要导出。我想拆分我的 ixx 文件,以便每个 类 的实现都保留在单独的文件中。

我想象的是这样的:

interface.ixx:

export module MyModule;

export namespace MyLib {
    struct A {
        void doStuff();
    };

    struct B {
        A myA;
        void otherStuff();
    };
}

然后,我想像这样实现我的类,

A.ixx:

module MyModule;

// import self??

MyLib::A::doStuff() {
    // stuff...
}

B.ixx

module MyModule;

// import self again??

MyLib::B::otherStuff() {
    myA.doStuff();
}

我想知道的是:无论文件如何,模块是否知道它的接口?如果没有,是否有另一种方法可以将模块拆分为多个文件?我知道在那种情况下它可能看起来很愚蠢,但是在大模块中有大 类,将东西分开是很诱人的。

merged module proposal, [module.unit]/8:

A module-declaration that contains neither export nor a module-partition implicitly imports the primary module interface unit of the module as if by a module-import-declaration.

这意味着模块实现单元隐式导入模块的主要模块接口。