Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,153,017 members, 7,818,009 topics. Date: Sunday, 05 May 2024 at 03:49 AM

Top 5 Free Scala Prog. Books 4 Java Programmers, Download As PDF Or Read Online - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Top 5 Free Scala Prog. Books 4 Java Programmers, Download As PDF Or Read Online (1941 Views)

Any Love For Scala Around Here? / Pls, How Can I Save A Document As .pdf, .doc In PHP? / Functional Programming For Java Programmer Scala Or Clojure? (2) (3) (4)

(1) (Reply)

Top 5 Free Scala Prog. Books 4 Java Programmers, Download As PDF Or Read Online by toshodei: 4:55am On Aug 25, 2014
Scala is another JVM based programming language, which is quickly gaining popularity because of its interesting mix of object oriented and functional programming paradigm. Many companies has started using Scala for there strategic and mission critical development. One of the best known is Twitter, which is also one of the key factor in growing popularity of Scala programming language. If you are a Java, C++ or C# programmer, who is willing to learn Scala in your spare time, then you will be surprised to see how much helpful content is available for FREE on internet. By the way Java 8 is not far way, only couple of months to go and there are already some decent tutorials available online. If you are learning Java 8, you may like to see my list of resources on Java 8 as well. I personally prefer books to start with and that's why, when I recently started learning Scala, I did some research on Scala programming books, which are available for FREE download or online reading. I am surprised to see lots of good contents, including Scala for the Impatient from Cay Horstmann, which I already had. Other good FREE Scala books I found was Effective Scala, looks like inspired by Effective Java, from Marius Eriksen, Twitter Inc. This is not as exhaustive as Effective Java and I guess it will evolve into similar length, but still contains lots of good advice on Scala programming. One more Scala book which is available for free is Programming in Scala, First Edition by Martin Odersky, Lex Spoon, and Bill Venners, this is bit old, first published at December 10, 2008, but still a good book to have, given Martin, inventor of Scala is co-author. Another good tutorial cum book I found is Scala School, collection of lectures from Twitter to prepare experienced engineers to be productive Scala programmers. You can read this on-line. Best things about all these resources are that they are FREE, you don't need to spend single penny to get these tutorials, of-course if you like you can also purchase some more good books, I have mentioned in my earlier post about difference between Scala and Java programming language. Now let's see from where can you download these free Scala programming books and how good they are.



5 Free Good Books to Learn Scala Programming language

So here you go, my list of some of the best resources, tutorial and books to learn Scala programming language for free. Some of the books can be downloaded as PDF while others can be read online. If you know any other Scala book, which you think is a good resource to learn and its also available for FREE, you can share with us. Apart from these, you can also see tutorials, manuals, API reference from scala-lang.org and official Scala API documentation to learn more.

Scala for the Impatient
Free Scala Programming for Java Programmers
This is one of the few good books on Scala Programming language, written by Cay Horstmann, published by Addison-Wesley 2012. It's one of the best, compact introduction to Scala programming language for programmers who are already familiar with popular first class languages e.g. Java, C++ or C#. It contains small, chapter wise contents which are very easy to comprehend, a much needed requirement to understand a language like Scala, which initially looks cryptic to many Java developers. Once you gone through the book, you will most likely to use it as quick reference as well. To give you an idea about different levels of Scala programmers, level A1 is for Beginning application programmer, level A2 stands for Intermediate application programmer and level A3 is used for Expert application programmer. Similarly they have three levels for Scala library designer, where level L1 is for Junior library designer, level L2 is for Senior library designer and level L3 is used for Expert library designer. As part of level A1 contents you will learn following topics in Scala :

1) Java-like statements and expressions: standard operators, method calls, conditionals, loops, try/catch
2) Infix notation for method calls
3) class, object, def, val, var, import, package
4) Collections with map, filter, etc
5) Simple closures
6) for-expressions

Now the best part is that you can get the A1 level chapters of this Scala book for free at typesafe. All you need to do is to enter your first name, last name, email address and company name. You need to thank Martin Odersky, the inventor of Scala for that. He has also written forward for this book and so impressed with basic concept of the book that he asked cay, if the first section could be made available as a free download on the Typesafe website, something Horstmann graciously assented to. So what are you waiting for, you can download FREE pdf of Scala for the Impatient here.


Programming in Scala First Edition
This is one of the first books in Scala programming language, comprehensive step-by-step guide by Martin Odersky, Lex Spoon, and Bill Venners. One of the highlight of this books is that it is co-written by the language's designer, Martin Odersky. It covers Scala in great details and can be used as reference as well. Like any good book, Programming in Scala flows well with each chapter building on concepts and examples described in earlier ones. Fantastic thing is that first edition of this books available for FREE, by the way if you like you can also get second edition of this book from book stores. I rate this book very precious free resource for Java cum Scala programmers. You can read this book on internet here.



Scala School from Twitter
Scala school is started as a series of lectures at Twitter to prepare experienced Java, C and C# programmers to be productive Scala programmers. Scala is a relatively new language, but draws on many familiar concepts. Thus, these lectures assumed that programmers already familiar with the concepts and showed how to use them in Scala. This is actually an effective way of getting new programmers up to speed quickly. This online tutorial cum blog cum book is the written material that was used in those lectures, you can read them one by one in the order they are presented to get most out of them. They are short, full of examples and very easy to understand, but same time not trivial. You can check out this book on-line here


Effective Scala
This is another Scala programming books which is freely available in online, and another contribution from Twitter towards education programmers on Scala. Effective Scala is Twitter's "best practices" for Scala programming language, much like "Effective Java" is for Java programming language. This books is particularly useful for understanding idioms in Twitter's code. It's written and compiled by Marius Eriksen, Twitter Inc. marius@twitter.com (@marius) and covers Scala programming best practices on Formatting, Pattern matching, Types and Generics, Variance, Type aliases, Implicits, Collections, Performance, Java Collections, Concurrency, Control structures, Functional programming, Object oriented programming, Error handling, Handling exceptions, Garbage collection and Java compatibility. You can checkout Effective Scala here.


Scala Tutorials for Java Programmers
This is one of the best Scala tutorials for Java developers, directly from source scala-lang.org. This book gives a quick introduction to the Scala language and compiler. It is intended for people who already have some programming experience and curious to learn Scala to see what they can do with this new programming language. It also assumed basic knowledge of object-oriented programming, especially in Java. They start right from Hello World program, which is what most Java programmer like to see:

object HelloWorld {
def main(args: Array[String]) {
println("Hello, world!"wink
}
}

From here they went on to explain how Scala programs are structured and comparatively analysis of Java vs Scala. It is good as gold and absolutely free as well. You can download PDF version in book like format here.

Read more: http://javarevisited..com/2014/01/top-5-free-books-to-learn-scala-programming-PDF.html#ixzz3BNA3GpR7

Link ~> http://javarevisited..com/2014/01/top-5-free-books-to-learn-scala-programming-PDF.html
Re: Top 5 Free Scala Prog. Books 4 Java Programmers, Download As PDF Or Read Online by asalimpo(m): 4:59pm On Aug 25, 2014
toshodei: By the way Java 8 is not far way, only couple of months to go

smh. Mindless copy-and-paste job.
*Java8 is almost half a year old.*

2 Likes

Re: Top 5 Free Scala Prog. Books 4 Java Programmers, Download As PDF Or Read Online by onlyyouandty: 3:13pm On Nov 25, 2015

(1) (Reply)

Need A Skilled Developer / Vb6 Title Bar / Help Needed In Php Programming Language

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 26
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.