hello,
please tell me how to creat an array of an inner cclass;
is this correct??class outer { .... .... class inner { ........ ........ } } outer o =new outer(); outer.inner [ ] i = o.new inner[5];
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
hello,
please tell me how to creat an array of an inner cclass;
is this correct??class outer { .... .... class inner { ........ ........ } } outer o =new outer(); outer.inner [ ] i = o.new inner[5];
For an array, no.
The correct syntax would be:
outer.inner[] i = new outer.inner[5];
However, if you only wanted a single instance of the inner class, something similar to your syntax would work:
outer o = new outer(); outer.inner i = o.new inner();
If you're unsure if something is correct, you can always try it out.
Something I would recommend is to simply declare the inner class static
public class Outer { static class Inner {} }
To create a new array it would use the same syntax, but to create a new instance of Inner, you just need to do this:
Outer.Inner i = new Outer.Inner();
Last edited by helloworld922; December 22nd, 2010 at 11:55 PM.
thank you very much
prima