Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 275023
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:42:01+00:00 2026-05-12T00:42:01+00:00

I have a C++/CLI wrapper around native .lib and .h files. I use the

  • 0

I have a C++/CLI wrapper around native .lib and .h files. I use the AutoPtr class pretty extensively in the wrapper class to manage the unmanaged objects I create for wrapping. I have hit a roadblock with the copy constructor/assignment operator.

Using the AutoPtr class from Mr. Kerr: http://weblogs.asp.net/kennykerr/archive/2007/03/26/AutoPtr.aspx

He suggests the following(in the comments) to recreate the behavior of the assignment operator:

SomeManagedClass->NativePointer.Reset(new NativeType);

Which I believe is true. But when I compile my code:

ByteMessageWrap (const ByteMessageWrap% rhs)
{
     AutoPtr<ByteMessage> m_NativeByteMessage(rhs.m_NativeByteMessage.GetPointer());
};

ByteMessageWrap% operator=(const ByteMessageWrap% rhs)
{
     //SomeManagedClass->NativePointer.Reset(new NativeType);
     if (this == %rhs) // prevent assignment to self
        return *this;

     this->m_NativeByteMessage.Reset(rhs.m_NativeByteMessage.GetPointer());
     return *this;
};

— I get the following errors:

error C2662:
‘WrapTest::AutoPtr::GetPointer’ :
cannot convert ‘this’ pointer from
‘const WrapTest::AutoPtr’ to
‘WrapTest::AutoPtr %’

Has anyone experienced similar issues?


For further background on the answer, I removed the “const” keyword from the signature. I know that is not smiled upon in terms of code correctness for a copy ctor, but the CLR doesn’t like it at all — sort of belies the CLR at its core with memory management.

I wonder if it’s possible to leave the const in the signature and then use GCHandle or pin_ptr to make sure memory doesn’t move on you while performing the copy?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T00:42:01+00:00Added an answer on May 12, 2026 at 12:42 am

    Looking at Kenny Kerr’s AutoPtr, it transfers ownership in its constructor — essentially a “move” constructor rather than a copy constructor. This is analogous with std::auto_ptr.

    If you really want to transfer ownership from rhs to this (i.e. leave rhs without it NativeByteMessage), you need to change your copy ctor into a move ctor.

    Also, you need to use initialization syntax;

    // warning - code below doesn't work
    ByteMessageWrap (ByteMessageWrap% rhs)
        : m_NativeByteMessage(rhs.m_NativeByteMessage); // take ownership
    {
    }
    
    ByteMessageWrap% operator=(ByteMessageWrap% rhs)
    {
         //SomeManagedClass->NativePointer.Reset(new NativeType);
         if (this == %rhs) // prevent assignment to self
            return *this;
    
         m_NativeByteMessage.Reset(rhs.m_NativeByteMessage.Release());
         return *this;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 155k
  • Answers 155k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Javascript arrays: [value1,value2,value3] SO your code might be: inputEl: {… May 12, 2026 at 10:41 am
  • Editorial Team
    Editorial Team added an answer Ok, this seems to be a by-design behavior and a… May 12, 2026 at 10:41 am
  • Editorial Team
    Editorial Team added an answer You might want to check out Stack Overflow question .NET… May 12, 2026 at 10:41 am

Related Questions

Problem (simplified to make things clearer): 1. there is one statically-linked static.lib that has
I have a C++ DLL (no code) that I want to expose to .NET
I have a custom plugin for 3ds Max that interfaces with some managed code
I'm writing a mixed C++/CLI DLL with both managed and unmanaged classes. Both need

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.