vote up 2 vote down star
1

Can C++ slicing apply to other languages too, like Java/C#?

flag

This is not an exact duplicate. The supposed duplicate asks nothing about C# or Java. – Rob Kennedy Feb 12 at 0:36

closed as exact duplicate by codelogic, ChrisW, sixlettervariables, Martin York Feb 11 at 17:20

5 Answers

vote up 8 vote down check

Slicing means that if you assign a subclass instance to a superclass variable, the extra information contained by subclass is "sliced" off, because the superclass variable doesn't have the extra space to store this extra information of the subclass.

This doesn't happen in Java nor with C#, because all object variables are references; when you assign a subclass instance to a superclass variable, you actually just copy the reference; the subclass object itself remains intact.

link|flag
"This doesn't happen in Java or C#, because they use pointers to reference objects" - this is quite incorrect. – duffymo Feb 11 at 13:22
My terminology was a bit off (corrected it now), but I think my point wasn't. If I'm still quite incorrect, could you please correct. – Joonas Pulakka Feb 11 at 13:45
Your comment wasn't very helpful, Duffymo. – Rob Kennedy Feb 11 at 13:52
C# has value types. i think in c# your statement isn't true (? i'm a c# noob. so i can be wrong here), but for java it's of course very true. – Johannes Schaub - litb Feb 11 at 14:28
ah never mentioned. you can't derive a struct from another struct in C# – Johannes Schaub - litb Feb 11 at 14:37
show 6 more comments
vote up 0 vote down

Here's how I understand the slicing problem:

I start with a class Parent, with a method doThis.

I create a new class Child, which inherits the doThis method and defines another method doThat.

I now create an array of Parent references and populate it with references to Parent and Child. If I iterate through that array of Parent references, I can't call the doThat method on any reference without knowing its underlying type and casting to Child where appropriate. I can call doThis on every reference without concern, because every Child IS-A Parent and has a doThis method to call.

The representation of the Child class isn't modified in memory, but the doThat method isn't available via a Parent reference without casting - it's "sliced away".

Perhaps I'm incorrect, but that's how I think of the slicing problem. If that's true, it is indeed present in Java.

link|flag
You understanding is incorrect. Slicing deals with actual LOSS of data. In your example, the method hasn't been sliced away since you still have Child references. Type-cast the reference, and you'll find that the whole object is still there. – Rob Kennedy Feb 12 at 0:36
vote up 0 vote down

Checkout this link

link|flag
vote up 2 vote down

Raj, buy a copy of Scott Meyer's excellent book "Effective C++" (sanitised Amazon link) for many excellent discussions about this problem and many other C++ gotchas.

HTH

cheers,

link|flag
I have one :-) .. – yesraaj Feb 11 at 10:50
vote up 5 vote down

This is a duplicate. See What is the slicing problem in C++?.

link|flag
Some of it is a duplicate. The title. What about the body of the question, though? – Rob Kennedy Feb 11 at 13:51
You're right, it's not an exact duplicate. IMHO it would be more helpful to others if a new, more general, question asking about slices in C# and Java were asked, because the title here seems misleading. – codelogic Feb 12 at 7:55
@codelogic your are welcome to change the title – yesraaj Feb 12 at 8:17

Not the answer you're looking for? Browse other questions tagged or ask your own question.