Hola cual de este tipo es mejor y porque?
Código C++:
Ver original//primer tipo
int & function(){return edad;}
//segundo tipo
int function(){return edad;}
//otros
string & function(){return nombre;}
string function(){return nombre;}
Son funciones miembro.
Saludos