Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / May 2006

Tip: Looking for answers? Try searching our database.

Small question about arrays

Thread view: 
thedownfallen@hotmail.com - 22 May 2006 11:03 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?

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/



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.