vote up 3 vote down star
6

Possible Duplicate:
Language Books/Tutorials for popular languages

Possible duplicates:
List of freely available programming books
Language Books/Tutorials for popular languages
What is the single most influential book every programmer should read?

As a (good) programmer/software developer, we will have to learn more than 1 languages.

Assuming the person is a competent programmer in some language, which book would you recommend him if he wanted to learn language "Y". (Fill in your language here).

To keep this organized, I was thinking 1 answer per language. If a language has already been answered, please add additional books under comment. This way all books are "grouped" together.

The point of this is so that this post would have every language's best "intro" book.

flag
3  
I think it's very clear what he means. He just wants a collection of good books to start programming in each language. – Marc Müller Oct 26 at 4:12
2  
There already have been questions like this for every language. It's really of no use to smash all the answers to these questions together in one thread. – sth Oct 26 at 4:27
2  
There are soooooo many duplicate "book" questions that I don't even know where to begin, so I'll just link the "granddaddy": stackoverflow.com/questions/1711/… – gnovice Oct 26 at 4:29
1  
yeah, im fully aware of all the other book posts. though, i dont recall seeing a post like this...this one is specifically about programming language books. and wouldnt it be nice if all of them are smashed together in one page? so you dont have to visit so many pages? – ShaChris23 Oct 26 at 4:32
5  
More specifically, stackoverflow.com/questions/194812 and stackoverflow.com/questions/22873 – RCIX Oct 26 at 4:32
show 2 more comments

closed as exact duplicate by starblue, Bill the Lizard Oct 29 at 1:20

26 Answers

vote up 5 vote down

Perl:

Programming Perl (Larry Wall, Tom Christiansen & Jon Orwant. Published by O'Reilly). Affectionately referred to as "The Camel Book" because of the camel on the cover.

alt text

link|flag
vote up 1 vote down

Python:

The O'Reilly books "Learning Python", "Programming Python" and the "Python Cookbook" helped me alot when learning Python. Of course, DiveIntoPython is also great.

link|flag
vote up 5 vote down

C++:

C++ Programming Language by Bjarne Stroustrup

alt text

link|flag
vote up 2 vote down

Java:

For Java, Bruce Eckel's "Thinking in Java" is widely considered the best-written.

link|flag
vote up 5 vote down

JavaScript:

Cover

link|flag
vote up 2 vote down

Objective-C:

For Objective-C, I have found that the best resource is Programming in Objective-C 2.0 by Stephen Kochan.

link|flag
vote up 2 vote down

Scala:

Programming in Scala, co-written by Martin Odersky, who designed the language

link|flag
vote up 11 vote down

C:

alt text

C Programming Language

link|flag
they're only up to 2nd edition? – Simon Oct 26 at 4:59
1  
C hasn't changed much in the past ~20 years... – Finer Recliner Oct 26 at 10:57
It might make sense to update it for C99. – Brian Campbell Oct 27 at 4:11
vote up 1 vote down

Computer Networking:

Computer networks By Andrew S. Tanenbaum

alt text

link|flag
wow..good creative answer. thanks! – ShaChris23 Oct 26 at 4:24
4  
Huh? Networking is a programming language? – Novelocrat Oct 26 at 4:26
lol..you know the answer to that. but i thought it's cool to just capture good books to introduce us programmers to useful concepts. – ShaChris23 Oct 26 at 4:28
ShaChris23: I dunno; I'd suggest you probably want to keep this question pretty focused. If you want a general "good books" wiki then consider contributing to one of the existing ones. – itowlson Oct 26 at 4:46
vote up 3 vote down

Lua

Programming in Lua by Roberto Ierusalimschy. On of the best books about any language. The previous edition is available free online.

If you're looking for a more "learning lua programming book", try Beginning Lua Programming. It offers a great introduction to lua as well as examples for just about everything in the language and standard libraries..

link|flag
Beat me to it, though i added my suggestion. – RCIX Oct 26 at 4:30
vote up 3 vote down

C#:

C# in Depth by Jon Skeet

link|flag
Not bad, though if you want a free one check out downloads.red-gate.com/ebooks/DotNet/… Very introductory, but a must-read for any newbie to c#. – RCIX Oct 26 at 4:34
vote up 2 vote down

C#:

I'd have to hand it to Apress' Illustrated C# 2008 as a beginner's book, following it up with Manning's C# in Depth by C# MVP Jon Skeet.

Python:

No question: Dive Into Python by Mark Pilgrim.

Ruby:

For Ruby, I'm going to give you a suggestion you might not expect: No Starch Press' Ruby by Example.

link|flag
vote up 6 vote down

Scheme

The Structure and Interpretation of Computer Programs by Harold Abelson and Gerald Sussman.

link|flag
2  
darn, beat me to it. – meder Oct 26 at 5:02
What language is this for? – MiseryIndex Oct 27 at 3:46
@MiseryIndex It says the language at the top; Scheme. Though it's more a book about programming in general as opposed to a book on the language Scheme. – Brian Campbell Oct 27 at 3:56
Yeah, you can pretty much benefit in any language by reading this, though it isn't easy to grasp ( I'm stuck :p ). – meder Oct 28 at 2:42
If you're stuck, then ask questions. Stack Overflow is a great place for that sort of thing :) – Brian Campbell Oct 28 at 5:27
vote up 3 vote down

Common Lisp:

alt text

Practical Common Lisp

link|flag
yes, also the author of Coders at Work!! – Jeff Atwood Oct 26 at 4:55
vote up 1 vote down

Python:

alt text

Learning Python 4th edition by Mark Lutz

link|flag
Is that book really good? I've heard bad review about it. – jpartogi Oct 26 at 9:14
Yes, I've read it and it's pretty comprehensive even for intermediate/expert IMO, also has quizzes for each chapter.. awesome book. – meder Oct 26 at 12:26
vote up 2 vote down

Haskell:

alt text

Real World Haskell

link|flag
1  
Why is there a 'bug' on the cover? Seems funny for a programming book... – CodeJoust Oct 27 at 3:44
1  
From the website: "**What's that creature on the cover?** The illustration on our cover is of a Hercules beetle. These beetles are among the largest in the world. They are also, in proportion to their size, the strongest animals on Earth, able to lift up to 850 times their own weight. Needless to say, we like the association with a creature that has such a high power-to-weight ratio." – ShreevatsaR Oct 27 at 3:59
vote up 0 vote down

Javascript:

alt text

( The Definitive 5th is great for reference, however the code examples are not practical/modern and I believe Zakas's book is more thorough in regards to modern and web programming )

Professional Javascript 2nd edition

link|flag
vote up 1 vote down

Ruby:

The Ruby programming language alt text

Very nice and comprehensive explanation and clear example for programming Ruby.

link|flag
vote up 3 vote down

Regular Expressions:

http://www.eggheadcafe.com/articles/0596528124_cat.gif

http://www.amazon.com/Mastering-Regular-Expressions-Jeffrey-Friedl/dp/1565922573

link|flag
always found this a very fun to read book. great in depth 'chatty' language. like the author is having a direct conversation with you – Simon Oct 26 at 4:59
vote up 1 vote down

Sed/Awk:

alt text

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.