On which kind of memory a C struct is allocated when initialized as a class variable in Objective-C - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T19:02:42Zhttp://stackoverflow.com/feeds/question/426224http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/426224/on-which-kind-of-memory-a-c-struct-is-allocated-when-initialized-as-a-class-varia2On which kind of memory a C struct is allocated when initialized as a class variable in Objective-CAriel Malka2009-01-08T22:12:55Z2009-01-09T01:02:55Z
<p>Consider the following:</p>
<pre><code>typedef struct
{
float m00, m01, m02, m03;
float m10, m11, m12, m13;
float m20, m21, m22, m23;
float m30, m31, m32, m33;
} Matrix;
@interface TestClass : NSObject
{
Matrix matrix;
}
- (TestClass *) init;
@end
</code></pre>
<p><hr /></p>
<pre><code>@implementation TestClass
- (TestClass *) init
{
self = [super init];
matrix = (Matrix) {1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f};
return self;
}
@end
</code></pre>
<p>How to ensure that the 64 bytes allocated with the struct are properly released whenever the "matrix" variable is not relevant anymore (or whenever the whole object is released)?</p>
http://stackoverflow.com/questions/426224/on-which-kind-of-memory-a-c-struct-is-allocated-when-initialized-as-a-class-varia/426336#4263365Answer by Stefan Tannenbaum for On which kind of memory a C struct is allocated when initialized as a class variable in Objective-CStefan Tannenbaum2009-01-08T22:42:23Z2009-01-08T22:42:23Z<p>In this case matrix <em>should</em> be embedded in the struct that is generated by the ObjectiveC compiler for instances of TestClass. Its lifetime is bound to the instance of TestClass which it is part of, just like an int or float member would be.</p>
<p>You can easily test this, if you inspect the pointers.</p>
<pre><code>TestClass* testAddress = [[TestClass alloc] init];
Matrix* matrixAddress = &(testAddress->matrix);
int rawTest = (int) testAddress;
int rawMatrix = (int) matrixAddress;
int memberOffset = rawMatrix - rawTest;
printf("%i", memberOffset);
</code></pre>
<p>I have no compiler here, but I guess it will just mumble some warnings about evil typecasts and generate the code anyways. The output should be constant, something like 4 or 8, depending on your target architecture.</p>
http://stackoverflow.com/questions/426224/on-which-kind-of-memory-a-c-struct-is-allocated-when-initialized-as-a-class-varia/426387#4263872Answer by clarkcox3 for On which kind of memory a C struct is allocated when initialized as a class variable in Objective-Cclarkcox32009-01-08T22:57:52Z2009-01-08T22:57:52Z<p>In this case, there's absolutely nothing that you have to do to the structure to get free its memory when the object containing it is deallocated. The memory for the structure is inline in the object.</p>
http://stackoverflow.com/questions/426224/on-which-kind-of-memory-a-c-struct-is-allocated-when-initialized-as-a-class-varia/426693#4266931Answer by Brad Larson for On which kind of memory a C struct is allocated when initialized as a class variable in Objective-CBrad Larson2009-01-09T01:02:55Z2009-01-09T01:02:55Z<p>As an aside, the Core Animation struct CATransform3D has the same internal structure as your matrix:</p>
<pre><code>struct CATransform3D
{
CGFloat m11, m12, m13, m14;
CGFloat m21, m22, m23, m24;
CGFloat m31, m32, m33, m34;
CGFloat m41, m42, m43, m44;
};
</code></pre>
<p>Instead of defining a custom type, you may wish to use this one that Apple provides. Apple also provides some very handy functions for manipulating these matrices.</p>