First of all, yes, I know I have to iterate through an array and print its elements one by one in order to actually "print" an array. I was just wondering what the output of explicitly printing an array such as in the code below actually means. My guess is that it's the memory location of the array?
I know it's a fairly newbie question but I'm new to java (and coding in general) so please enlighten me.
public class Tests {
public static void main(String[] args) {
String[] strArray = {"1", "2", "3"};
System.out.println(strArray);
}
}