+ 1
How much of java does an android developer need? And is what we learn here at SoloLearn java course enough?
4 ответов
+ 4
the sololearn course + generics should be enough. of course you also need to learn the android api
maybe also lambdas
+ 4
if you make a ArrayList of int you can use ArrayList<int> and in general if you want to make one from a type T you can use ArrayList<T>. writing classes that depend on a type is generics
https://www.tutorialspoint.com/java/java_generics.htm
+ 2
Thanks man, but what are these generics?