473,606 Members | 2,381 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Cloning Question

I've implemented the ICloneable interface on one of my class. I've
written this simple code in two different ways and I think both should
work but it's not the case and I'm curious to understand why.

The working method:

CallflowBase ret = null;
ret = this.Memberwise Clone() as CallflowBase;
ret.m_callflowN ame = this.m_callflow Name;

/* I'm resetting some of the members (to be safe) since the cloned
copy will have to be reinitialized before being used. */

ret.m_initializ ed = false;
ret.m_deviceID = null;
ret.m_currentNo de = null;
ret.m_asyncComm andProcessor = null;
ret.m_syncComma ndProcessor = null;

if (this.m_rootNod e != null)
{
ret.m_rootNode = this.m_rootNode .Clone() as INode;
}

The NON working method:

/* I thought it would be simpler to just new up a new class in this
case as I don't really want to copy most of the members */

CallflowBase ret = new CallflowBase();
ret.m_callflowN ame = this.m_callflow Name;

if (this.m_rootNod e != null)
{
ret.m_rootNode = this.m_rootNode .Clone() as INode;
}

But it appears that this method of cloning fails since I end up
pointing to the same object. Am I missing something obvious here?

Thanks,
Dan

Sep 21 '07 #1
1 1775
Dan Dorey wrote:
I've implemented the ICloneable interface on one of my class. I've
written this simple code in two different ways and I think both should
work but it's not the case and I'm curious to understand why.
You haven't posted complete code. For best results, you need to post a
concise-but-complete example of code that demonstrates the problem. In
this case, that would mean a minimal class posted with two complete
methods to clone, one for each technique you're using.

For what it's worth, it's my opinion that the code you posted isn't
really cloning anyway, so you shouldn't call it cloning. I suppose
there's some wiggle-room semantically, but so little of the original
object remains that I think it's very misleading in the code to use the
term "clone" to describe the operation.

And finally, some specific comments (none of which suggest what the
problem is, as far I know):
The working method:

CallflowBase ret = null;
ret = this.Memberwise Clone() as CallflowBase;
There's no need to initialize the variable to null if you're just going
to set it immediately after.

Otherwise, this seems fine and it should return a new instance of your
object, assuming you don't change "ret" later and return the value in "ret".
[...]
/* I thought it would be simpler to just new up a new class in this
case as I don't really want to copy most of the members */
I think so too. And because you don't want to copy most of the members,
I wouldn't actually call it a "clone". :)
CallflowBase ret = new CallflowBase();
This seems fine and should return a new instance of your object (with
the same caveats noted above).
[...]
But it appears that this method of cloning fails since I end up
pointing to the same object. Am I missing something obvious here?
If so, you didn't post the code that is causing the problems. At least,
not as near as I can tell.

In both versions, you initialize a variable "ret" to be a new instance
of your object. So, it seems that the problem is not in the code you
posted. Some suggestions as to what _might_ be the problem:

* You are not actually returning that value held by the "ret" local
variable. What value you are returning, I can't say, since you didn't
post a complete example of the code.

* You are incorrectly determining that you "end up pointing to the
same object". Do you actually have a reference to the same object? How
exactly did you make that determination? When you clone an object,
obviously the resulting object can in a lot of ways look a lot like the
original. :)

There are other ways you may have made a mistake, but it's not really
possible with the code you posted to say for sure, I think.

Pete
Sep 21 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2457
by: Tom | last post by:
Hey ho, The release of PHP5 seemed like a good reason to try to learn it once more... I'm reading through the O'Reilly PHP/MySQL book and right now, I'm fiddling with objects. I just discovered the proper way to clone objects is *not* "$b = $a->__clone();", as it reads in the book, but "$b = clone $a". Right?
7
2709
by: sonic | last post by:
Hello, I am cloning a table row which contains images that have behaviors attached to them as well as onclick events. The problem is that the cloned row seems to be executing the behavior/events on the original rows image. I overwrote the onclick as well as attached a behavior to the image in cloned row, but events such as onmouseover execute now on both images when the duplicate is mouse overed.
0
1066
by: meh | last post by:
Greetings all; Got some questions about cloning a treenode.... In this example: private void button4_Click(object sender, System.EventArgs e) { TreeNode lastNode = treeView1.Nodes. Nodes.Nodes.Count - 1];
8
4861
by: Tom | last post by:
I've a problem. I want to clone an object having a list of other objects (and so on :/). Do you know any other way than ICloneable.Clone() implementation for all classes in the way? Help..
2
1752
by: Hendrik Schober | last post by:
Hi, I need something like this: class X { private: struct Impl_ { virtual ~Impl_() {} virtual Impl_* clone() const = 0; };
3
1718
by: AVL | last post by:
Hi, I've a query in cloning. How cloning is different from creating a new instance of an object.? I suppose cloning also creates a new object and copies the exisitng object's data. Where and when should use cloning????//
6
8386
by: J Williams | last post by:
I'm using axWebBrowser control and HTML DOM in a VB .NET Windows application to create a new HTML document by cloning nodes. The function below is called from the axWebBrowser1_DocumentComplete event using: Dim mNewDoc As mshtml.IHTMLDocument3 mNewDoc = NewDoc(axWebBrowser1.Document) Private Function NewDoc(ByVal mInputDoc As mshtml.IHTMLDocument3) As mshtml.IHTMLDocument3
3
8744
by: raylopez99 | last post by:
The "C# Cookbook" (O'Reilly / Jay Hilyard), section 3.26, is on deep cloning versus shallow cloning. The scanned pages of this book are found here: http://www.sendspace.com/file/mjyocg (Word format, 3 pp) My question, coming from a C++ background where deep copying is done, is why in C# you would do either deep or shallow copying as suggested by O'Reilly (using the "ICloneable" inhereited interface), at least for the .NET framework. ...
0
1162
by: Chris | last post by:
Hi All. I'm cloning a treenode, like so: TreeNode trNewTemp = new TreeNode(); trNewTemp = ((((ICloneable)trTempNode).Clone()) as TreeNode); Now the cloning works- trNewTemp has the same content and properties as trTempNode. The problem is, the treenode I'm cloning has multiple childnodes, and childnodes of those childnodes.... it's about 6 deep.
0
8016
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8440
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8431
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8096
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6773
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5966
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5466
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3980
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1557
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.