C++\CLI 中的托管类定义
它可以在 .h 和 .cpp 文件中定义吗?还是必须在单个 .h 文件中定义?
Can it be defined in .h and .cpp file or it has to be defined in a single .h file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以仅在 .h 中定义或拆分类定义,就像传统 C++ 那样。
请注意,对于属性,您需要使用适当的范围来嵌套 get 和 set 方法,例如:
You can define in just a .h or split the class definitions just as you would for traditional C++.
Note that for properties you will need to nest your get and set methods with proper scoping, eg: