c++ -> Java

Permabanned
Joined
13 Jan 2005
Posts
10,708
Hi guys,

can anyone recommend any decent books for c++ developers who are looking to migrate to Java?

i.e low on OO theory/design and high on syntax and differences between the two...

All the Java books i've seen spend chapter after chapter going on about OO....
 
just use the references on java.sun.com. The O'Reily refence books are pretty good iirc but I rarely open mine now and just use a combination of google searching and the API docs.

the API is huge compared to stdlib in C++ but well documented and all on line.

You'll miss the power of pointers ;)

HT
 
You still have object references. But if you're looking to do pointer arithmetic then it's game over :p There are better, more OO ways, to achieve the same goal as pointer arithmetic however.
 
Back
Top Bottom