How do I return a references to an object from a function?
static ArrayList getItemFile(str ing destdir){...}
Does the above code return the whole Arraylist on the stack or does it
return a reference?
static ArrayList getItemFile(str ing destdir){...}
Does the above code return the whole Arraylist on the stack or does it
return a reference?
Comment