I have a QHash<QString, myClass*> objects
and in order to insert I did the following:
myClass *value = objects.value(key);
if(!value) {
value = new myClass;
objects.insert(key, value);
}
Is this right approach?
I have a QHash<QString, myClass*> objects
and in order to insert I did the following:
myClass *value = objects.value(key);
if(!value) {
value = new myClass;
objects.insert(key, value);
}
Is this right approach?
Copyright © 2021 Jogjafile Inc.
Your solution is one of several possible correct approaches.
I usually do it like this as I find it a bit more readable
As already suggested by Marek R, you can use smart pointers for easier memory management:
Since C++11, I prefer using std::shared_ptr.
This allows you to not care about
delete
calls; just make sure you always useQSharedPointer< MyClass >
instead ofMyClass*
everywhere. Also, you mustn't use shared pointers for QObject subclasses which have a parent, as the parent object will store a regular pointer for it.