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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…