TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Good Java books for aspiring Clojurians?

28 点作者 rbxbx将近 15 年前
I feel I would be much more effective in Clojure (and consequently, the Java ecosystem) if I spent some time with Java, or were at least more familiar with it. With the wealth of Java books, it is a bit intimidating to choose one...<p>So HN: What would be a good Java book for a Clojurian with a solid OO background, but no Java experience?

8 条评论

fogus将近 15 年前
There are probably more than my recommendation of the Goetz book. Most of the topics that will be relevant from a Clojure perspective boil down to (in no particular order):<p>- Classpath<p>- Classpath<p>- Swing API calls<p>- Classpath<p>- Maven<p>- Exceptions<p>- Interfaces<p>- Primitives<p>- Arrays<p>- Collections framework<p>- and Classpath<p>Did I miss anything?
评论 #1508773 未加载
评论 #1508999 未加载
评论 #1508764 未加载
acangiano将近 15 年前
Effective Java (2nd Edition) by Joshua Bloch: <a href="http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683/" rel="nofollow">http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/032...</a><p>It's not for beginner Java programmers, but if you have experience in other similar programming languages you may get away with it.
评论 #1508745 未加载
评论 #1508738 未加载
评论 #1508739 未加载
fogus将近 15 年前
#1. "Java Concurrency in Practice" <a href="http://www.amazon.com/Java-Concurrency-Practice-Brian-Goetz/dp/0321349601" rel="nofollow">http://www.amazon.com/Java-Concurrency-Practice-Brian-Goetz/...</a><p>#2. ... hmm, that might be it.
aaw将近 15 年前
In addition, can anybody suggest something more along the lines of Jeffrey Richter's CLR via C# for the JVM/Java? CLR via C# covers a wide range of topics about how garbage collection, threading, appdomains, etc. work under the CLR using examples from C#, which I think would be more useful for learning what you need to know about Java and the JVM than your typical Java programming book.
评论 #1508996 未加载
TrevorBurnham将近 15 年前
Java Puzzlers. It's a fun book that teaches you to really understand the language by making you deal with its corner cases. Highly recommended.
JoelPM将近 15 年前
As a long time Java programmer I recommend these two:<p><a href="http://www.amazon.com/ERLANG-Programming-Francesco-Cesarini/dp/0596518188/" rel="nofollow">http://www.amazon.com/ERLANG-Programming-Francesco-Cesarini/...</a><p><a href="http://www.amazon.com/Programming-Erlang-Software-Concurrent-World/dp/193435600X/" rel="nofollow">http://www.amazon.com/Programming-Erlang-Software-Concurrent...</a><p>Okay, just kidding. =)<p>On a serious note, Effective Java is one of the best out there.
评论 #1509476 未加载
gtani将近 15 年前
I picked these because the big box book resellers stock them (I think you're looking for background on things like primitives/autoboxing, java.util.concurrent, the JVM's startup options, profiling/debug tools, and maybe tips that make rhickey's clojure source easier to read):<p><a href="http://www.amazon.com/Core-Java-TM-I-Fundamentals-8th/dp/0132354764/" rel="nofollow">http://www.amazon.com/Core-Java-TM-I-Fundamentals-8th/dp/013...</a><p><a href="http://www.amazon.com/Java-Good-Parts-Jim-Waldo/dp/0596803737/" rel="nofollow">http://www.amazon.com/Java-Good-Parts-Jim-Waldo/dp/059680373...</a>
srnm将近 15 年前
The Java Tutorials are great for people new to the Java Platform: <a href="http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/index.html" rel="nofollow">http://download.oracle.com/docs/cd/E17409_01/javase/tutorial...</a><p>Of course, the focus is the Java language... but there are lots of practical examples.