You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
5.1 KiB
123 lines
5.1 KiB
11 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||
|
|
||
|
<!-- Enable responsiveness on mobile devices-->
|
||
|
<!-- viewport-fit=cover is to support iPhone X rounded corners and notch in landscape-->
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover">
|
||
|
|
||
|
<title>Julio Biason .Me 4.3</title>
|
||
|
|
||
|
<!-- CSS -->
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/print.css" media="print">
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/poole.css">
|
||
|
<link rel="stylesheet" href="https://blog.juliobiason.me/hyde.css">
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body class=" ">
|
||
|
|
||
|
<div class="sidebar">
|
||
|
<div class="container sidebar-sticky">
|
||
|
<div class="sidebar-about">
|
||
|
|
||
|
<a href="https://blog.juliobiason.me"><h1>Julio Biason .Me 4.3</h1></a>
|
||
|
|
||
|
<p class="lead">Old school dev living in a 2.0 dev world</p>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<ul class="sidebar-nav">
|
||
|
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/">English</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/pt">Português</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/tags">Tags (EN)</a></li>
|
||
|
|
||
|
<li class="sidebar-nav-item"><a href="/pt/tags">Tags (PT)</a></li>
|
||
|
|
||
|
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="content container">
|
||
|
|
||
|
<div class="post">
|
||
|
<h1 class="post-title">Modern Java in Action - Raoul-Gabriel Urma</h1>
|
||
|
<span class="post-date">
|
||
|
2019-02-08
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/books/">#books</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/reviews/">#reviews</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/java/">#java</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/java-8/">#java 8</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/java-9/">#java 9</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/raoul-gabriel-urma/">#raoul-gabriel urma</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/it/">#it</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/stars-2/">#stars:2</a>
|
||
|
|
||
|
<a href="https://blog.juliobiason.me/tags/published-2014/">#published:2014</a>
|
||
|
|
||
|
</span>
|
||
|
<p><a href="https://www.goodreads.com/book/show/46213396-modern-java-in-action">GoodReads Summary</a>:
|
||
|
Java 8 Lambdas in Action is a clearly-written guide to Java 8 lambdas and
|
||
|
functional programming in Java. It begins with a practical introduction to the
|
||
|
structure and benefits of lambda expressions in real-world Java code. The book
|
||
|
then introduces the Stream API and shows how it can make collections-related
|
||
|
code radically easier to understand and maintain. Along the way, you'll
|
||
|
discover new FP-oriented design patterns with Java 8 for code reuse, code
|
||
|
readability, exception handling, data manipulation, and concurrency. For
|
||
|
developers also exploring other functional languages on the JVM, the book
|
||
|
concludes with a quick survey of useful functional features in Scala and
|
||
|
Clojure.</p>
|
||
|
<span id="continue-reading"></span><div>
|
||
|
★★☆☆☆
|
||
|
</div>
|
||
|
<p>To be short: It's a good book, but it is extremely (and unnecessary) verbose.</p>
|
||
|
<p>It covers the new stuff on Java 8 (like streams and lambdas) and some of Java 9
|
||
|
(like the Flow/reactive interface). It does a good job on Streams and Lambdas,
|
||
|
but seems to fall a bit short on the reactive interface, maybe 'cause it's just
|
||
|
an interface, although I found the examples a little bit missing in some
|
||
|
points, like showing the Three interfaces, Subscriber, Subscription and
|
||
|
Publisher, but showing examples without the Publisher. A bit worse (IMHO), is
|
||
|
that, in order to produce an example, instead of publishing some data, it shows
|
||
|
a generic publisher of sequential numbers, in which it calls the real
|
||
|
publisher.</p>
|
||
|
<p>Also, the authors seem a bit too enthusiastic about lambdas. Even when the code
|
||
|
becomes less readable -- specially in the Flow examples -- they still use
|
||
|
lambdas. They are so into it that the example of a <code>for</code> being converted to a
|
||
|
stream is shown at least 4 times.</p>
|
||
|
<p>There are too many "as follows"; there are too many "in the next section" just
|
||
|
before the next section; there is too much repetition that shouldn't be there.</p>
|
||
|
<p>Again, the content is good, but the text is terrible.</p>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|