0

I'm a C++ developer over 5 years.

Now I'm starting developing for android, but I'm having trouble with Java.

The part that is like C++ is ok, but the part that is specific of Java, I don't know.

The subjects I'm having more trouble is template and containers.

Somebody knows where I could learn just the "advanced" parts of Java?

jonathanrz
  • 4,206
  • 6
  • 35
  • 58
  • 1
    Containers are known as Collections in Java - see [this answer](http://stackoverflow.com/a/1288730/1029272) for some links. Also check out [the really big index of java tutorials](http://docs.oracle.com/javase/tutorial/reallybigindex.html) – Deco Mar 24 '12 at 03:06
  • By "templates" do you mean Generics and by "containers" do you mean the [Java Collections Framework](http://java.sun.com/developer/onlineTraining/collections/Collection.html)? – ulmangt Mar 24 '12 at 03:07
  • 1
    Java generics look similar to C++ templates at first glance, but they actually work quite differently. I would recommend reading the Java tutorial on generics, at http://docs.oracle.com/javase/tutorial/java/generics/index.html – Dawood ibn Kareem Mar 24 '12 at 03:20

1 Answers1

0

Are you talking about collections or containers. If it is the latter, check this out: http://docs.oracle.com/javase/tutorial/uiswing/components/toplevel.html

user181533
  • 49
  • 1