Hi. Just a small problem. I would like to create a array of objects,
wtih each object's constructor having two parameters. How do I do
this?
Thanks
reply to michael_jd@hotmNOSPAMail.com
Philipp Leitner - 22 May 2006 11:14 GMT
Well, just like you would create any new object:
MyObject[] array = new MyObject[size];
for(int i=0; i<array.length; i++) {
array[i] = <CONSTRUCT OBJECT>
}
/philipp
thedownfallen@hotmail.com schrieb:
> Hi. Just a small problem. I would like to create a array of objects,
> wtih each object's constructor having two parameters. How do I do
[quoted text clipped - 3 lines]
>
> reply to michael_jd@hotmNOSPAMail.com
Thomas Weidenfeller - 22 May 2006 11:23 GMT
> Hi. Just a small problem. I would like to create a array of objects,
> wtih each object's constructor having two parameters. How do I do
> this?
class Bla {
public Bla(int a, int b) { ... }
}
Bla data[] = {
new Bla(1, 2),
new Bla(3, 9),
new Bla(99, 12)
};

Signature
The comp.lang.java.gui FAQ:
ftp://ftp.cs.uu.nl/pub/NEWS.ANSWERS/computer-lang/java/gui/faq
http://www.uni-giessen.de/faq/archiv/computer-lang.java.gui.faq/