Tagged Questions
5
votes
2answers
331 views
C++ DAL - Return Reference or Populate Passed In Reference
[EDIT 1 - added third pointer syntax (Thanks Alex)]
Which method would you prefer for a DAL and why out of:
Car& DAL::loadCar(int id) {}
bool DAL::loadCar(int id, Car& car) {}
Car* ...