PDA

View Full Version : urgent


cba
12-16-2005, 11:46 AM
What does func_name()[0];
Mean in java????
Is it the first element of array of functions???

tricolaire
12-16-2005, 12:00 PM
if it were an array of functions it would be func_name[0]()

what context is this in?

Spookster
12-16-2005, 01:08 PM
What does func_name()[0];
Mean in java????
Is it the first element of array of functions???

You are required to read our posting guidelines before posting in our forums.
http://www.codingforums.com/postguide.htm

Roelf
12-16-2005, 03:57 PM
when the function func_name() returns an array, this might be a way of retrieving the forst element in the returned array. did not test it, but this is my best guess