In Java, it would look like this:
class Foo
{
float[] array;
}
Foo instance = new Foo();
instance.array = new float[10];
|
|
In Java, it would look like this:
|
||
|
|
|
You can just use a pointer:
If you're using Objective-C++, you could instead do:
|
||
|
|
|
|
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.
|
||||||
|