16

I don't have my Effective C++ with me and this is bugging me so much that I have to ask for my own sanity. Given

class Foo : public Bar{}

void MyFunc(Bar &_input);

If I pass in a Foo, am I tangling with the slicing problem or have I avoided it?

Community
  • 1
  • 1
wheaties
  • 35,646
  • 15
  • 94
  • 131

3 Answers3

15

Not a problem, because you're passing in a reference. You're not creating a new object, just letting MyFunc access the original object.

Jason S
  • 184,598
  • 164
  • 608
  • 970
6

Since you are passing the reference - no, unless you later assign to an instance of Bar.

Nikolai Fetissov
  • 82,306
  • 11
  • 110
  • 171
2

Slicing is only a problem when you cast an object to its parent class. There is no slicing when you cast pointers or references.

Dima
  • 38,860
  • 14
  • 75
  • 115