vote up 0 vote down star

In Java, it would look like this:

class Foo
{
  float[] array;
}

Foo instance = new Foo();
instance.array = new float[10];
flag

That's not a class variable, that's an instance variable - one exists for each instance of the class. – Chris Hanson Jan 2 at 9:27

2 Answers

vote up 2 vote down check

You can just use a pointer:

float *array;
// Allocate 10 floats -- always remember to multiple by the object size
// when calling malloc
array = (float *)malloc(10 * sizeof(float));
...
// Deallocate array -- don't forget to do this when you're done with your object
free(array);

If you're using Objective-C++, you could instead do:

float *array;
array = new float[10];
...
delete [] array;
link|flag
vote up 3 vote down

Here's another way to do it. Create a NSMutableArray object and add NSNumber objects to it. It's up to you to decide whether or not this is sensible.

NSMutableArray *array;
array = [[NSMutableArray alloc] init];
[array addObject:[NSNumber numberWithFloat:1.0f]];
[array release];
link|flag
I guess there would be a performance penalty in not using the primitive float type. Also, using a mutable array when the required dimension is known in advance (and is not going to change) seems to be overkill. – Ariel Malka Jan 1 at 22:10
Yes, you would have to measure to be sure, but this would certainly be slower & use more memory. But in certain cases it could be handy to use NSArray/NSMutableArray. For example you can read & write to plist files easily with them. – Chris Lundie Jan 2 at 3:22
You can initialize a mutable array with a specific size, even if that's known ahead of time you may still want a mutable array if you do not want to add all items to the array in one place. There is a performance concern but generally it's much better than the danger of using malloc wrongly. – Kendall Helmstetter Gelner Jan 5 at 6:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.