Tagged Questions
The static-allocation tag has no wiki summary.
6
votes
3answers
211 views
Why do Objective-C objects have to be dynamically allocated?
Why do Objective-c objects have to be dynamically allocated? Why do I have to make it a pointer to an object, unlike in C++ I can create them on stack?
Thanks.
4
votes
4answers
580 views
Returning c_str from a function
This is from a small library that I found online:
const char* GetHandStateBrief(const PostFlopState* state)
{
static std::ostringstream out;
... rest of the function ...
return ...
3
votes
7answers
108 views
C++: Why can a statically created variable by passed to a function expecting a reference?
I've been programming in C++ for a while but certainly wouldn't call myself an expert. This question isn't being asked to solve a practical problem that I have, it's more about understanding what C++ ...
1
vote
5answers
649 views
Can I increase the size of a statically allocated array?
I know its possible to increase the size of a dynamically allocated array.
But can I increase the size of a statically allocated array?
If yes,how?
EDIT: Though this question is intended for C ...
0
votes
2answers
66 views
Releasing statically allocated nsarray
I have a static array in my class. When do i release it? or I don't have to worry about it?
I was thinking about releasing it in dealloc method but not sure.
Thanks