Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
import java.lang.Math;
import java.util.*;
import java.io.*;


class Hello {


    public static void main(String args[]) throws FileNotFoundException{

        String[] veri2 = {"No", "Compilation", "Error"};

        List<String> veri1 = new ArrayList<String>();
        veri1.addAll(Arrays.asList(veri2)); // ---------- 14
        System.out.println(veri1+"elements in hashset");

    } 

}

Why the above code doesnt throw a compile error at line 14 when a List is added to another List whose elemnts are of type String ?

share|improve this question
1  
Why are you expecting it to? – Nick May 11 '11 at 14:57
addAll takes a Collection, and Arrays.asList returns a List<T>, with T being String in your case...so what's the problem? – birryree May 11 '11 at 14:58
veri2 is also an array of string being converted to a list of string. It seems very valid to me – Amine May 11 '11 at 14:58
@Richards: We're adding List<String> to a List<String>.. – Nick May 11 '11 at 14:59
@Nick, yea just realized that.. – Richards May 11 '11 at 14:59
show 3 more comments

8 Answers

up vote 8 down vote accepted

The List<E>.addAll method accepts a Collection<? extends E>, and the List<E> interface inherits from Collection<E>.

If you tried to add a String using addAll, you would actually get an error.

List<String> list = new ArrayList<String>();
list.addAll("Hello");

The above code wouldn't work, since String does not implement Collection<String>.

share|improve this answer
Thnx Dan .. got it .. but we are able to escape the compile time generic rule .. – whokares May 11 '11 at 15:08
3  
@whataheck: No, generics are working properly to enforce compile-time correctness. You're adding all the Strings from one List<String> to another. You couldn't do stringList.addAll(integerList). – ColinD May 11 '11 at 15:20
@Colin Excellent tHnx .. when I add a List of Integers thru addAll ,it throws a compile time error ...... – whokares May 11 '11 at 15:24

The signature in your case is addAll(Collection<String> c) and since you pass a List<String> which extends Collection<String> all is fine.

share|improve this answer

Arrays.asList() is generic and since your array is an array of String, it returns a List<String>, which is exactly what you want.

see: http://download.oracle.com/javase/6/docs/api/java/util/Arrays.html#asList(T...)

share|improve this answer

Why would you expect a compiler error? The signature of addAll() is:

boolean addAll(Collection<? extends E> c)

So in your case:

boolean addAll(Collection<? extends String> c)

And Arrays.asList():

public static <T> List<T> asList(T... a)

Which means for your

public static List<String> asList(String... a)

So addAll() wants a Collection<? extends String> and gets a List<String> - which is perfectly OK.

share|improve this answer
yaa got it .. .To ask u a dffrnt one .. I culdnt get what this means ,,,, many times .. boolean addAll(Collection [-- <? extends E> --] c) the one in [-- -] Collection<? extends String> does this mean the collection contains objects sof String . What does extends signify – whokares May 11 '11 at 15:15
@whataheck: It's a bounded wildcard ( download.oracle.com/javase/tutorial/extra/generics/… ) - it means a Collection that contains only instaces of some unknown class which is String or a subclass thereof – Michael Borgwardt May 11 '11 at 15:35

Because Arrays.asList() returns a List. In your case it is interpreting your String[] and setting that as the type.

share|improve this answer

When you add all the elements of a List<String> to a List<String> this is the one occasion you shouldn't get an error.

share|improve this answer

Because addAll adds each element of a collection to a list. If you had called add, you presumably would have gotten the error you expected.

share|improve this answer

As you can see in the List API:

public boolean addAll(Collection c)

Appends all of the elements in the specified collection to the end of this list...

So no type error because addAll receives Collection (List is a Collection) as argument and adds them to the list.

share|improve this answer

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.