show/hide this revision's text 4 Corrected syntax.

Can someone explained, as detailed as possible, the differences between the following types?

List

List<Object>

List<?>

Can I get an answer, not a link?

Let me make this more specific.

When would I want to use

public void CanYouGiveMeAnAnswer( List l ){}

?

When would I want to use

public void CanYouGiveMeAnAnswer( Listl<Object> l ){}

?

When would I want to use

public void CanYouGiveMeAnAnswer( Listl<?> l ){}

?

show/hide this revision's text 3 added 406 characters in body

Can someone explained, as detailed as possible, the differences between the following types?

List

List<Object>

List<?>

Can I get an answer, not a link?

Let me make this more specific.

When would I want to use

public void CanYouGiveMeAnAnswer( List l ){}

?

When would I want to use

public void CanYouGiveMeAnAnswer( List l<Object> ){}

?

When would I want to use

public void CanYouGiveMeAnAnswer( List l<?> ){}

?

show/hide this revision's text 2 added 41 characters in body

Can someone explained, as detailed as possible, the differences between the following types?

List

List<Object>

List<?>

Can I get an answer, not a link?

show/hide this revision's text 1