Přejít na menu

What (not) to do in a constructor

Správa článků

Vyhledávání Vyhledávání
10.9.2014 11:27
,
Počet přečtení: 637

The cardinal rule is that the constructor should yield a fully usable object.

Complex logic should not be in the constructor.

Fully usable object does not mean a fully initialized object, you may defer some initialization (think lazy) as long as the user does not have to think about it.

http://stackoverflow.com/questions/3905784/what-not-to-do-in-a-constructor

class Vector
{
public:
Vector(): mSize(0), mData(0) {}

// first call to access element should grab memory

private:
size_t mSize;
int mData[];
};

Vytvořil 10. září 2014 v 11:30:03 mira. Upravováno 2x, naposledy 13. září 2014 v 11:18:50, mira


Diskuze ke článku

Vložení nového komentáře
*
*
*