Take this example:
public class foo
{
public int[] func()
{
int arr[] = new int[3];
// here initialised the array
return arr;
}
}
I’m not experienced with Java, but I know a little of C/C++.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, it’s completely OK, because garbage collection is done when there is no further reference to the object. You can also find the array size by using
lengthinside (arr.length) or outside (e.g.aFoo.func().length) the method.