I would like to know how references are really implemented in C++. I mean, initialization of a réference? Is it more efficient to handle a reference or a pointer?
for example:
int i = 7;
int &j = i; // how is this ligne compiled?
int *k = &i; // is it less efficient doing this?
And is the case of objets, is there any diffrence in managing reference?