Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
219 views
in Technique[技术] by (71.8m points)

c++ - References and Object Slicing

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...