Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I could not locate the package in which Java defines raw arrays like String[] strs ( not ArrayList).

What methods and properties are defined in such Java array and how do I return an iterator for such array supposed I am asked to return an iterator for two integers begin and end?

share|improve this question

2 Answers

up vote 4 down vote accepted

Here's a good summary:

http://java.sun.com/docs/books/jls/second_edition/html/arrays.doc.html

10.7 Array Members

The members of an array type are all of the following:

  • The public final field length, which contains the number of components of the array (length may be positive or zero)

  • The public method clone, which overrides the method of the same name in class Object and throws no checked exceptions

  • All the members inherited from class Object; the only method of Object that is not inherited is its clone method

As far as "iterators"; the "beginning" and "end" are simply "0" and ".length - 1". You can always implement your own class that wraps an array and implements Iterator.

share|improve this answer

The only properties available (specific to Arrays) are really .length, and the index accessor, e.g. [0].

Arrays can be used in the new for loop syntax provided with Java 1.5:

for(String s : new String[]{"a", "b", "c"}){
  // Something with s.
}

You can also access an Array as a List, using http://docs.oracle.com/javase/6/docs/api/java/util/Arrays.html#asList%28T...%29 .

Also see the rest of the Arrays class for many other operations that exist to operate specifically on arrays. (Here, we have a class that operates on arrays, rather than the array containing all of the useful properties and methods.)

share|improve this answer
This is not quite right. Arrays also have all the methods Object has (.equals(), .hashCode(), .toString(), etc). That happens because arrays are objects (eg: int[] arr = {1,2,3}; System.out.println(arr instanceof Object); // prints true) – NullUserException Nov 28 '11 at 20:57
NullUserException - good catch. I clarified my answer to include properties "specific to Arrays". – ziesemer Nov 28 '11 at 20:59
@NullUserException: true, but they don't have very useful implementations for arrays. – Simon Nickerson Nov 28 '11 at 21:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.