Tagged Questions
13
votes
10answers
2k views
Can I use memcpy in C++ to copy classes that have no pointers or virtual functions
Say I have a class, something like the following;
class MyClass
{
public:
MyClass();
int a,b,c;
double x,y,z;
};
#define PageSize 1000000
MyClass Array1[PageSize],Array2[PageSize];
If my ...
3
votes
6answers
542 views
Default assigment operator= in c++ is a shallow copy?
Just a simple quick question which I couldn't find a solid answer to anywhere else. Is the default operator= just a shallow copy of all the class' members on the right hand side?
Class foo {
public:
...
2
votes
2answers
754 views
Is shallow copy sufficient for structures with char[]?
I have a structure containing character arrays with no any other member functions. I am doing assignment operation between two instances of these structures. If I'm not mistaken, it is doing shallow ...
2
votes
4answers
2k views
Shallow/deep copy of std::map
How would I best implement these? I thought of something like this:
using namespace std;
shape_container
shape_container::clone_deep () const
{
shape_container* ptr = new ...
0
votes
1answer
194 views
Is vector::push_back() making a shallow copy & how to solve this
In the program I am writing, I have something similar to the code here:
#include<iostream>
#include<vector>
#include<cstring>
using namespace std;
struct people
{
string name;
...
0
votes
3answers
190 views
What are problems with shallow copy? [closed]
This is an interview question I saw from here:
http://www.careercup.com/question?id=1707701
Want to know more about this .thanks
0
votes
1answer
140 views
Creating clone of an object not working with virtual base class
#include<iostream>
using namespace std;
class Something
{
public:
int j;
Something():j(20) {cout<<"Something initialized. j="<<j<<endl;}
};
class Base
{
private:
...
0
votes
1answer
155 views
Do shallow copies share pointers? (C++)
I know that if I do something like this:
class Obj
{
public:
int* nine;
};
Obj Obj1; //Awesome name
int eight = 8;
Obj1.nine = &eight;
Obj Obj2 = Obj1; //Another Awesome name
then Obj1's ...
-2
votes
7answers
143 views
Questions about a Segmentation Fault in C++ most likely caused by a custom copy constructor
I'm getting a segmentation fault which I believe is caused by the copy constructor. However, I can't find an example like this one anywhere online. I've read about shallow copy and deep copy but I'm ...
-4
votes
1answer
107 views
Shallow copying and Deep Copying in C++ [closed]
Difference between shallow copying and Deep copying with an example in c++?