C++\CLI 中的托管类定义

发布于 2024-08-12 15:02:21 字数 46 浏览 4 评论 0原文

它可以在 .h 和 .cpp 文件中定义吗?还是必须在单个 .h 文件中定义?

Can it be defined in .h and .cpp file or it has to be defined in a single .h file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人问我粥可暖 2024-08-19 15:02:21

您可以仅在 .h 中定义或拆分类定义,就像传统 C++ 那样。

请注意,对于属性,您需要使用适当的范围来嵌套 get 和 set 方法,例如:

void MyModel::AProperty::set(bool b)
{
    mBackingVariableForAProperty = b;
}

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:

void MyModel::AProperty::set(bool b)
{
    mBackingVariableForAProperty = b;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文