The incomparable Scala book in the near future

I have seen quite a few books about Scala, but they are so much alike. I wonder what headings (related to Scala) would like to see it different from the "main thread"?

+4
source share
3 answers

Another thematic book along the way is the "actors in scala" that were mentioned on the Scala BASE meetup - currently the author (or at least co-author) of Martin Odersky.

The participant structure offers an essentially new concurrency model (first in Erlang), which aims to simplify the writing of parallel code than the traditional shared state of concurrency, as well as improved scalability for multi-core architectures.

+4
source

At this point, all Scala books are dedicated to teaching Scala. This is natural, since most readers are not familiar with Scala.

Over time, we will most likely need books with Scala patterns (which can be very different from Java patterns) and anti-patterns, coding tips, advanced algorithms or themes like concurrency or strategic programming.

A type-raising book is suitable for the topic category, but in fact it is much more about the Lift library and the use of Lift than the general use of Scala for web programming.

+7
source

One of the important things that we don’t have yet is an entry-level book, suitable for Scala as the first language, and not as the next step after Java, assuming some familiarity with the JVM API and Java syntax.

At the moment there is no text in a language that I really could recommend to a bright young man (late teenager) who wants to start programming with something better than the choice of Pascal Hobson, available in IT classes at school - not that any of ( quasi) functional languages ​​are in much better condition.

+1
source

Source: https://habr.com/ru/post/1286117/


All Articles