What's the Java equivalent of Kernighan and Ritchie's C programming language?
1–4 of 4 posts
Re: What's the Java equivalent of Kernighan and Ritchie's C programming language?
#2Personally if I had to get back into Java today I would start by exploring Introduction to Programming in Java: An Interdisciplinary Approach by Robert Sedgewick & Kevin Wayne. The 2nd Edition has just been published (early April 2017) - but take in account that I am suggesting this basing myself exclusively on the reputation of the authors, and I haven't read it.
Re: What's the Java equivalent of Kernighan and Ritchie's C programming language?
#3This is a really interesting question - the main problem with identifying a single book is that while Java core syntax is relatively terse (you can for example check out Precisely Java for an example: https://web-beta.archive.org/web/20110810052030/http://www.d... ) the language delivers only through massive usage of the standard libraries. And this really makes it a completely different beast from C - a gap that kep…
Re: What's the Java equivalent of Kernighan and Ritchie's C programming language?
#4Anyway, the formal introduction to Java is the specification produced via Java's consensus process. It's all there. Everything. If it isn't there, it's a bug.
https://docs.oracle.com/javase/specs/jls/se8/html/index.html
Good luck.