Considering i have two arrays for exampple:
String[] array1 = new String[10];
int[] array2= new int[10];
So that inside a method i have computed two arrays namely array1 & array2
and now i want to return both of these arrays. How should i go about it.
I read here that i can make another class and define certain object type and encapsulate these arrays in that class constructor, but i am still confused and did not understand completely.
If you could show me a working example which does that or may be any similar idea, it would be good.