Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个关于在 C++/cli 中创建命名空间的问题。
我想在单独的文件中有 3 个自己的类,但我想把它放在一个命名空间中。是否可以?如何。或者我可以只在每个文件中编写具有相同名称的命名空间并将它们全部链接在一起吗?
谢谢,K。
是的,你回答了你自己的问题。命名空间是开放的,它们可以存在于文件和不同的程序集中。如您所说,只需使名称空间具有相同的名称即可。