Struct copy inside itself

Started by
9 comments, last by King Mir 10 years, 11 months ago

struct wheel
{
       wheel *copy;
       wheel()
       {
              // variables assignment
              copy = (wheel *)malloc(sizeof(wheel));
              *copy = *this;
       }
       // variables...
};
 

Is this a reasonable code? Will it behavior nice for my purpose of having a struct's copy that way?

Advertisement

No.

What are you trying to do, please?

void hurrrrrrrr() {__asm sub [ebp+4],5;}

There are ten kinds of people in this world: those who understand binary and those who don't.

This depends greatly on how you handle the copying, and what a "copy" actually means in this case. You need to differentiate between the original and the copy in order to handle the copy of the original object as a copy, and not an original in itself that has yet another copy of itself.

Explain why you need this and what you intend to do with this copy instead and we may able to provide an actual answer to the specific question, or even provide a better solution.

Also, be very wary of recursive copying.

Your code *is* valid. copy will be an exact copy of the struct, including containing its own copy that points to itself.

I'm trying to have a copy of my dozens of variables struct inside it, because it'll only be used in that header file. There will be no reason why my main file should know about this copy's existance.
Using the above struct as an example, should be a funcion named spin(wheel w), which is called millions of times. All I need, for a faster performance, is to copy the struct once, right after it's creation, and not on every spin call.

Your code *is* valid. copy will be an exact copy of the struct, including containing its own copy that points to itself.

Yeah, it's working fine so far.

The ctor does not set any variables (other than copy), so copy will simply point to block of memory identified as being of type 'wheel' with undefined values.

?
void hurrrrrrrr() {__asm sub [ebp+4],5;}

There are ten kinds of people in this world: those who understand binary and those who don't.

Is this C or C++? You're using malloc and structs, which implies C-style programming, but you have a constructor, implying it's actually C++.

If C++, why not do something like this:

class Wheel
{
      public:
      Wheel()
      {
           //Do the thing that you only want to do once here.
      }
      
      
      
}

Or this:

class Wheel
{
      public:
      Wheel()
      {
           //Do the thing that you only want to do once here.
      }
      
      void Spin()
      {
            if(!hasAlreadyBeenSpun)
                   this->doThatThingYouOnlyDoOnce();
      }
      
      private:
      bool hasAlreadyBeenSpun = false;
 
     void doThatThingYouOnlyDoOnce()
     {
          //Your code goes here.
     }
}

The first option is much better though, because if a function says "Spin()", I expect the function to do what it says. Coding is hard enough without function names lying to you. wink.png

Maybe you want the constructor to spin, and you actually want a function called "GetResultOfSpin()"?

The code can become invalid if you add a non-trivial copy constructor to the wheel class, which you would have to do to avoid leaking memory.

I cannot understand exactly what you want. Have you considered passing the wheel by (const) reference instead? If copies are expensive, what about making your wheel class noncopyable? Are you trying to use something like the pimpl idiom or the flyweight pattern?

This topic is closed to new replies.

Advertisement