Programming in Scala: A Comprehensive Step-by-Step Guide and over one million other books are available for Amazon Kindle. Learn more



or
Sign in to turn on 1-Click ordering
Sell Us Your Item
For a $16.94 Gift Card
Trade in
More Buying Choices
Have one to sell? Sell yours here
Start reading Programming in Scala: A Comprehensive Step-by-Step Guide on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.
Sorry, this item is not available in
Image not available for
Color:
Image not available

To view this video download Flash Player

 

Programming in Scala: A Comprehensive Step-by-Step Guide, 2nd Edition [Paperback]

Martin Odersky , Lex Spoon , Bill Venners
4.4 out of 5 stars  See all reviews (69 customer reviews)

List Price: $54.95
Price: $36.61 & FREE Shipping. Details
You Save: $18.34 (33%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Want it tomorrow, June 20? Choose One-Day Shipping at checkout. Details

Formats

Amazon Price New from Used from
Kindle Edition $23.95  
Paperback $36.61  
Shop the new tech.book(store)
New! Introducing the tech.book(store), a hub for Software Developers and Architects, Networking Administrators, TPMs, and other technology professionals to find highly-rated and highly-relevant career resources. Shop books on programming and big data, or read this week's blog posts by authors and thought-leaders in the tech industry. > Shop now

Book Description

January 4, 2011
Scala is an object-oriented programming language for the Java Virtual Machine. In addition to being object-oriented, Scala is also a functional language, and combines the best approaches to OO and functional programming. In Italian, Scala means a stairway, or steps--indeed, Scala lets you step up to a programming environment that incorporates some of the best recent thinking in programming language design while also letting you use all your existing Java code. Artima is very pleased to publish a new edition of the best-selling book on Scala, written by the designer of the language, Martin Odersky. Co-authored by Lex Spoon and Bill Venners, this book takes a step-by-step tutorial approach to teaching you Scala. Starting with the fundamental elements of the language, Programming in Scala introduces functional programming from the practitioner's perspective, and describes advanced language features that can make you a better, more productive developer.

Frequently Bought Together

Programming in Scala: A Comprehensive Step-by-Step Guide, 2nd Edition + Scala for the Impatient + Scala in Depth
Price for all three: $90.72

Buy the selected items together
  • Scala for the Impatient $25.35
  • Scala in Depth $28.76

Customers Who Bought This Item Also Bought


Product Details

  • Paperback: 852 pages
  • Publisher: Artima Inc; 2 edition (January 4, 2011)
  • Language: English
  • ISBN-10: 0981531644
  • ISBN-13: 978-0981531649
  • Product Dimensions: 7.2 x 9.2 inches
  • Shipping Weight: 2.7 pounds (View shipping rates and policies)
  • Average Customer Review: 4.4 out of 5 stars  See all reviews (69 customer reviews)
  • Amazon Best Sellers Rank: #14,342 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

Customer Reviews

It is a very well written book. Does Not Matter  |  27 reviewers made a similar statement
This is the best general book on Scala programming language. Emre Sevinc  |  13 reviewers made a similar statement
If you are serious about Scala, I would recommend you buy and read this book. Brian Horblit  |  10 reviewers made a similar statement
Most Helpful Customer Reviews
63 of 66 people found the following review helpful
5.0 out of 5 stars A comprehensive guide to Scala January 4, 2009
Format:Paperback
Scala is a relatively new language that combines object-oriented programming with functional programming. Usually, when a new language gets some press coverage, some hastily written books are published, that merely give the user some impression of a language, rather than a good basis to build on.

This book is completely different: right from the start you will notice that it is carefully written and comprehensive. Sections naturally flow from one to another, and every concept is introduced good examples and rationale for why Scala uses a concept in a particular way. For example: Scala Ints are compiled as primitive types where possible, but they can also be treated as class instances (e.g. by invoking instance methods). The book not only explains that this is the case, but also how it works, and how it differs from auto-boxing in Java. Such in-depth coverage is provided for all major Scala language constructs.

Besides the covering language concepts, there are also some chapters discussing library functionality, such as containers, actors, building parsers, XML, and Swing programming. The book concludes with a hands-on chapter, where a simple spreadsheet application is implemented.

I wouldn't recommend this book to newcomers to programming, but anyone interested in functional programming or a user of the Java programming language should at least give it a serious consideration. It's a very interesting read that may widen your horizons and show that a good blend of object-oriented and functional programming does indeed exist. Additionally, it is poised to become the standard work for learning Scala.
Comment | 
Was this review helpful to you?
55 of 57 people found the following review helpful
5.0 out of 5 stars Perfect complement to resources available on the web April 27, 2009
Format:Paperback
It's difficult not to let one's enthusiasm for the Scala programming language color one's affection for this book. Nevertheless, _Programming in Scala_ is a rich book with reward after reward for the interested reader. Much can be found on the web about Scala, but this book is still indispensable for the Scala enthusiast for a number of reasons.

First, the prose is clear and gentle, finding the right medium between terseness and belaboring hard points. The authors reveal motivations for many aspects of the language, so that one cultivates a feel for Scala as one progresses through the text. The reader's surprise decreases the farther one gets, as a sense of taste is acquired.

Second, the ordering of the topics is well thought out. This makes the book cohesive, and it's more useful than trying to build one's own curriculum from web materials. For example, pattern matching is explained before XML parsing. This allows the reader to grok the rich support for XML found in Scala. As another example, the "for" expression is covered after exposure to higher order methods. This illustrates their equivalence, and enhances one's understanding of both. As a third example, functional objects are introduced before exploring stateful objects. This gives those readers more familiar with imperative programming early exposure to functional concepts, and sets the stage for appreciating the real power of Scala.

Third, Scala's features are explored with meaningful examples, or mini case studies. Functional class design is introduced with a Rational number class. OO class design is explored with a two dimensional layout library. A circuit simulation API demonstrates writing DSLs. Abstract types are illustrated with a Currency example.
... Read more ›
Was this review helpful to you?
21 of 22 people found the following review helpful
3.0 out of 5 stars Good book but.... March 20, 2011
By Larry
Format:Paperback|Amazon Verified Purchase
Don't get me wrong, this is a good book but not a whole lot different than the first edition. I was disappointed that the GUI Programming chapter is still using SimpleGUIApplication, which is a deprecated class. I was also hoping for more information on functional programming. A chapter on the best techniques for making reusable components would also be a good addition. Martin Odersky wrote a "Scalable Component Abstractions" back in 2005, in which he described what is now called the Cake Pattern, which improves on component reuse, but he makes no mention of this technique in this book. So, yes, this is a good book to learn scala, but my recommendation is that if you already have version 1, it's probably not worth your money to get version 2.
Was this review helpful to you?
23 of 25 people found the following review helpful
5.0 out of 5 stars A great introduction to an intriguing language February 6, 2009
Format:Paperback
The Scala language first crossed my consciousness over a year ago, at a stage where I was just starting to get into functional languages. But even with the various quick tour documents on the language web site, it was clear there were a lot more subtleties to this one that were not being explained.

With the stairway book, that gap has been bridged.

The book is aimed at the experienced programmer in 'C' derived imperative languages, with at least some familiarity with the Java(tm) language, and ideally some notion about functional programming techniques -- it is not by any stretch of the imagination a "my first programming book". For the intended audience, it is an extremely effective step-by-step guide to the features, and the syntax, of the language (this is a great contrast with e.g. Foundations of F# (Expert's Voice in .Net), a book aimed at a similar subject and audience, but which expends very little effort towards separating the accidents of the particular example from the generic syntax). While I am by no means yet fluent in the language, I feel that when I'm using it for hobby coding that I'm not just groping in the dark, but instead have a solid guide and reference to lead me.
Comment | 
Was this review helpful to you?
Most Recent Customer Reviews
1.0 out of 5 stars Beware license limit
I liked the book content to some degree, but beware if you have a kindle copy - there is a license limit. Read more
Published 2 days ago by Vivek Pathak
5.0 out of 5 stars A must for any programmer
Although first and foremost a Scala course that is comprehensive and detailed, this is also a great book about functional programming. Read more
Published 3 days ago by Nimrod Argov
4.0 out of 5 stars Very good book
This is generally a very good book. I would actually give it 4.5.

My only slight complaint (as a person who programs in Java for more than 10 years) is that it could be... Read more
Published 17 days ago by Mikhail Dmitriev
5.0 out of 5 stars The Way Forward
With Scala, the JVM platform now has the premier general purpose language it deserves. It has excellent Java interop plus loads of functional programming facilities. Read more
Published 1 month ago by Materialist Formalist
5.0 out of 5 stars Great introduction to the Scala language
Mr. Odersky knows the why's of every design decision taken on the Scala language creation and development and present it clearly to the readers.
Published 1 month ago by Roberto de Aguiar Bergo Duarte
5.0 out of 5 stars Comprehensive tour of language
This is a pretty comprehensive tour of the language. It is a bit disconcerting reading through it
because of all the forward references. Read more
Published 1 month ago by lists.arun
5.0 out of 5 stars great book from The Man
awesome book to get started with scala, and go through the whys and hows of the language design
full of precise explanations and great examples
Published 1 month ago by Stefano
5.0 out of 5 stars Really clear thinking
This book is so well written. Odersky is a master teacher. He knows just the right time to bring up a topic and knows just how far to push that topic. Read more
Published 1 month ago by Qaezel
5.0 out of 5 stars Excellent book
Very readable, and explains scala thoroughly. It walks you through scala one step at a time, but not so slowly as to be boring.
Published 2 months ago by Thayne
3.0 out of 5 stars The Kindle edition is broken for Cloud reader and retina macbooks
The book uses images for code snippets.

These don't display correctly on high resolution displays (such as Retina).
e.g. [... Read more
Published 2 months ago by Cosmin Lehene
Search Customer Reviews
Only search this product's reviews

What Other Items Do Customers Buy After Viewing This Item?


Forums

There are no discussions about this product yet.
Be the first to discuss this product with the community.
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Listmania!


So You'd Like to...


Create a guide


Look for Similar Items by Category