CLI 中的复制构造函数和赋值运算符

发布于 2024-11-09 13:06:21 字数 78 浏览 0 评论 0原文

我正在尝试在 C++/CLI 中查找赋值运算符和复制构造函数的示例。我在谷歌上花了很多时间,令人惊讶的是我找不到一个看起来很常见的像样的例子。

I'm trying to locate examples of assignment operators and copy constructors in C++/CLI. I have spent a lot of time on Google and surprisingly I can't find a decent example of something that seems pretty common.

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

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

发布评论

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

评论(1

难如初 2024-11-16 13:06:22

.NET 语义没有复制构造函数或赋值运算符之类的东西。您可以在ref class中定义一个,但它只会在C++端使用如果您显式请求副本`对于值类,一切都是内置的,您无法覆盖复制语义。

示例:

public ref class Foo
{
    Foo(const Foo% f);
};

Foo^ f = gcnew Foo;
Foo^ g = gcnew Foo(*f); // This will call C++ copy constructor. No .NET equivalent.

如果您想以 .NET 风格实现深度复制语义,请查看 ICloneable

另请参阅那里以获取您可以拥有的不同复制行为。不过,我强烈建议不要将ref class存储在堆栈上。

.NET semantics have no such thing as a copy constructor or assignment operator. You can define one in your ref classes, but it will be used only in the C++ side if you request explicitly a copy` For value classes, everything is builtin and you cannot override copy semantics.

Example:

public ref class Foo
{
    Foo(const Foo% f);
};

Foo^ f = gcnew Foo;
Foo^ g = gcnew Foo(*f); // This will call C++ copy constructor. No .NET equivalent.

Look at ICloneable if you want to implement deep copy semantics in the .NET style.

Also look there to get the different copy behaviors you can have. I'd strongly advice against storing ref classes on the stack though.

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