Can some kind soul explain this line? I'm not quite sure what the different
parts do and exactly how it works.
public:
// Constructors
Zoot(int size = 0) : _size(size), _data(_size ? new int[_size] : 0) { }
parts do and exactly how it works.
public:
// Constructors
Zoot(int size = 0) : _size(size), _data(_size ? new int[_size] : 0) { }
Comment