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
651 views
in Technique[技术] by (71.8m points)

c++ - compiler error saying invalid initialization of reference of type something& from expression of type something*

I have a function prototype like

test(something &)

and i am doing

something *ss = new something();

and i say

test(ss)

compiler complains saying initialization of reference of type something& from expression something * .

but isn't that new returns the address and ss must point to that address ! so if test is expecting a reference is not it ss represents a reference ?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Your function expects a normal something object. You don't need to use a pointer here:

something ss;

test(ss);

When your function signature looks like f(T&), it means that it accepts a reference to a T object. When the signature is f(T*), it means that it accepts a pointer to a T object.


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

2.1m questions

2.1m answers

60 comments

56.8k users

...