I know this is a very basic question, but I haven't been able to find a way to word it to find the answer either here or through Google.

In the following code:

    public void onItemClick(AdapterView<?> parent, View view, int position, long id)

What does the <'?> mean for the adapter view class template? My guess is that it means the parameter can be an AdapterView holding any type, but I'm not sure and figured I'd ask the community.

Thanks

link|improve this question

1  
This handy link is pretty well-written and goes through all of the basics of Generics & their uses/limitations. – Jens Jan 30 at 20:24
feedback

1 Answer

up vote 2 down vote accepted

You are correct. The parent parameter can be an AdapterView that is an AdapterView for any other object type.

If you want to learn more, check out info on Generics.

link|improve this answer
Thank you, I didn't realize they were called generics in java so that will help me find out more about them. – SmashCode Jan 30 at 20:25
feedback

Your Answer

 
or
required, but never shown

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