In an ArrayList for android such as the simplelistadapter I commonly see ArrayList<?> and in some tutorials I’ve reviewed the <?> is replaced by some value. But I’m still not quite sure what variable or qualifier this stands for.
In an ArrayList for android such as the simplelistadapter I commonly see ArrayList<?> and
Share
It’s called Generics.
For example, you can do this:
Or you can do:
As you can see, no need for casting.