I write program for Arduino device, but question is general (I think).
Let's say I have following code:
char* ClassB::generateUrl()
{
char* someString = (char*) malloc(...);
// something...
return someString;
}
char* ClassA::getMyUrl()
{
ClassB b;
return b.generateUrl();
}
void developerMethod()
{
ClassA a;
char* url = a.getMyUrl();
print(url);
}
In this case developer who uses ClassA::getMyUrl must remember to free memory allocated for url. Is there any more user-friendly way to do it?
Important: due to memory limitations on Arduino board I don't want to return whole ObjectB, only what it has generated. And because it may be long string, I don't want to copy it to any buffer provided in getMyUrl method as argument.
Update:
I must've been not clear enough :). What I want to achieve:
- When returning from a.getMyUrl() I don't want to have
ClassB bin memory - When returning from developerMethod I don't want to have neither
ClassA anorchar* urlin memory, without freeing. - Possibly use char* over String
I know that using malloc is wrong here, that is why I asked this question, to probably get rid of malloc and have "automatic" (at least from the point of view of developer writing developerMethod) memory management.
I guess it might be difficult/impossible to achieve, but even if it is impossible, just let me know and I'll accept such answer (if anybody confirms or no other answers appear in a few days).
