This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes method returning an array? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "method returning an array?" Watch "method returning an array?" New topic
Author

method returning an array?

M Shaw
Greenhorn

Joined: Sep 14, 2008
Posts: 11
Hey,
If I have a method that returns an array, say makeArray(), then in another method can I make a new array and set it to the method?
for example something like this:
int[] array2 = makeArray();
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32708
    
    4
Yes.

Assuming makeArray returns an int[].
M Shaw
Greenhorn

Joined: Sep 14, 2008
Posts: 11
yey! Thank you
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32708
    
    4
You're welcome
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: method returning an array?
 
Similar Threads
application hang up
Genrics Array creation
Arrays...
Array out of bounds exception .split()
Help with Arrays!