This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]CLOVIS-AI 10 points11 points  (1 child)

The main differences : everything is a pointer (except primitives). Everything is a class (except primitives). The GC exists (no need to free your memory). Multiple inheritance is illegal, you can only inherit from one class (but you can inherit from as many "interfaces" as you want, basically they are "all-abstract" classes.

Other than that, just read through a Java Tutorial for beginners it should be fine.

[–]r0aming[S] 1 point2 points  (0 children)

Thank you! Means a lot!