在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
如何使用命名空间 在标准C++里面命名空间是为了防止类型的冲突,但在Windows运行时中,使用C++编程需要给所有的程序类型添加上命名空间,这是Windows运行时的一种语法规范。命名空间可以嵌套着使用。
看下面的例子: namespace Test { public ref class MyClass{}; public delegate void MyDelegate();
namespace NestedNamespace { public ref class MyClass2 { event Test::MyDelegate^ Notify; }; } }
在MyClass2里面来使用Test空间下面的类型需要通过Test::来调用。
Windows运行时的命名空间 Windows运行时的API都在Windows::*命名空间里面,在windows.winmd文件里面可以到定义。这些命名空间都是为了Windows保留的,其他第三方自定义的类型不能够使用这些命名空间。
C++/CX的命名空间
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论