Rapid switch to Java for an experienced C++ develo

2019-03-09 23:32发布

I'm am looking for online tutorials/books, which assume a solid knowledge of OOP/Design patterns concepts and stress on differences (both conceptional and syntactical) between C++ and Java thus allowing for a rapid development in the latter. Thank you very much in advance, appreciate your time.

9条回答
做个烂人
2楼-- · 2019-03-09 23:45

Avoid head first Java. It is low signal to noise. Nutshell is good but has become huge, like the language.

查看更多
Juvenile、少年°
3楼-- · 2019-03-09 23:50

When I did (sort of) this, I used O'Reilly's Java in a Nutshell. It now seems to be more like "Java in an intermodal shipping container" though, so perhaps it's not as quick anymore. I would still expect it to be decent, I think it's more reference material nowadays.

查看更多
地球回转人心会变
4楼-- · 2019-03-09 23:55

There are several books covering "Java for C++ Programmers" on Amazon.

查看更多
趁早两清
5楼-- · 2019-03-10 00:01

I made this transition in 1996 or so when Java was newish. A book will definitely help. I used Laura Lemay's 21 day book, which is now up to rev 6. It took me 3 days to get through the original book and another week before I felt I was fully conversant.

Things to get used to:

  1. The language is not huge, but the support libraries are. There probably is already something that does what you want
  2. Garbage collection and sane memory management is awesome. My bug count plummeted in working with Java compared with C++
  3. Garbage collection and sane memory management sucks. I was writing performance critical applications and (at the time), I would've killed someone to get something similar to placement new or operator new overload.
  4. Garbage collection is not general resource collection (ie, open files etc). You still need to worry about that.
  5. I really missed having an integrated macro preprocessor. You can still use one, of course, but then your build has just gotten more complicated.
查看更多
我想做一个坏孩纸
6楼-- · 2019-03-10 00:02

You definitely need a book, and there are many out there.

Beyond that, one thing that helps, IMHO, is a cheatsheet, that you can print and put up next to your monitor. As you learn stuff you can add them to the sheet.

Here are a couple, specifically for C++ programmers:

查看更多
啃猪蹄的小仙女
7楼-- · 2019-03-10 00:03

I moved from C++ to Java 6 years ago an used "Effective Java" by Bloch, this is a style book which explains in 50 short articles how best to use various java classes and techniques. This is very similar to "Effective C++" by Meyers and "Exceptional C++" by Sutter.

If you already know C++ and object oriented programming and can read Java this is the fastest way to write good quality java code.

There is a new edition out now with generics etc. In my mind this book is essential for all Java programmers as well as those wanting to learn Java.

查看更多
登录 后发表回答