Should operations that could take some time be performed in a constructor or should the object be constructed and then initialised later.
For example when constructi
Try to have what you think is necessary there and dont think about if it will be slow or fast. Preoptimization is a time waster so code it, profile it and optimize it if needed.