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* ...
2
votes
1answer
105 views
Dedicating a field in arbitrary class types for “external use”
My container needs to store a little information about its elements. Normally, I store this separately from elements. However, I'd like to give users possibility to conserve memory by dedicating a ...
1
vote
6answers
801 views
What do *you* use C++ ABC constructors for?
What do people here use C++ Abstract Base Class constructors for in the field? I am talking about pure interface classes having no data members and no non-pure virtual members.
Can anyone ...
0
votes
2answers
66 views
Return a vector knowing it will always contain a single record in order to be consistent with the rest of the interface?
I'm writing a little address book application and have a design dilemna regarding the interface for the data source / backend.
I have the following abstract base class for data source classes:
class ...