Suppose we had a type with 100 members
To initialise the data members, we'd have to write a constructor s = something(1,2, ....) This could turn out to be an extremely long line. Is there a better way of doing this?
Suppose we had a type with 100 members
To initialise the data members, we'd have to write a constructor s = something(1,2, ....) This could turn out to be an extremely long line. Is there a better way of doing this?