Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Quick question on arrays 1

Status
Not open for further replies.

Aleena

Programmer
Oct 3, 1999
27
US
Does anyone know of a way to return an array of objects from a sub routine? Or is this just not possible...

Thanks for any help you can offer :)

Anna
 
[tt]
Object [] some_method( args ) {
Object [] some_object = new Object[3];
return some_object;
}
[/tt] I hope this helped! ;-)
- Casey Winans
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top