In Java we can declare an array using the following:
String[] array = new String[10]; int size = array.length;
Does this mean that the arra
I would say the answer is yes, although I might add that, strictly speaking, an array is an object in C++ too. From §1.8 [intro.object] of the current standard (FDIS):
An object is a region of storage.