Movatterモバイル変換


[0]ホーム

URL:


Packt
Search iconClose icon
Search icon CANCEL
Subscription
0
Cart icon
Your Cart(0 item)
Close icon
You have no products in your basket yet
Save more on your purchases!discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Profile icon
Account
Close icon

Change country

Modal Close icon
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timerSALE ENDS IN
0Days
:
00Hours
:
00Minutes
:
00Seconds
Home> Programming> Design Patterns> Kotlin Design Patterns and Best Practices
Kotlin Design Patterns and Best Practices
Kotlin Design Patterns and Best Practices

Kotlin Design Patterns and Best Practices: Elevate your Kotlin skills with classical and modern design patterns, coroutines, and microservices , Third Edition

Arrow left icon
Profile Icon Alexey Soshin
Arrow right icon
$9.99$35.99
Full star iconFull star iconFull star iconFull star iconHalf star icon4.9(26 Ratings)
eBookApr 2024474 pages3rd Edition
eBook
$9.99 $35.99
Paperback
$44.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$9.99 $35.99
Paperback
$44.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature iconInstant access to your Digital eBook purchase
Product feature icon Download this book inEPUB andPDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature iconDRM FREE - Read whenever, wherever and however you want
Product feature iconAI Assistant (beta) to help accelerate your learning

Contact Details

Modal Close icon
Payment Processing...
tickCompleted

Billing Address

Table of content iconView table of contentsPreview book icon Preview Book

Kotlin Design Patterns and Best Practices

Getting Started with Kotlin

This chapter will primarily focus on the fundamentals of Kotlin syntax. It is crucial to have a strong understanding of the language before diving into the implementation of design patterns.

We will also briefly explore the problems that design patterns aim to solve and explain why they should be used in Kotlin. This will be beneficial for those who are less familiar with the concept of design patterns. Even experienced engineers can gain interesting insights from this discussion.

It’s important to note that this chapter doesn’t aim to cover the entire range of the language’s vocabulary. Instead, its purpose is to introduce you to fundamental concepts and idioms. In the following chapters, we will gradually introduce more language features as they become relevant to the design patterns we examine.

The main topics covered in this chapter include:

  • Basic language syntax and features
  • Understanding Kotlin code...

Technical requirements

To follow the instructions in this chapter, you’ll need the following:

The code files for this chapter are available athttps://github.com/PacktPublishing/Kotlin-Design-Patterns-and-Best-Practices_Third-Edition/tree/main/Chapter01.

IMPORTANT NOTE:

For simple code snippets, there’s no requirement to write them in a file. You have the option to explore the language online, using platforms likehttps://play.kotlinlang.org/, or leverage a REPL and an interactive shell after installing Kotlin and executing thekotlinc command.

Basic language syntax and features

If you’re familiar with Java, C#, Scala, or other similar programming languages, you’ll find Kotlin’s syntax quite familiar. This is by design, as Kotlin aims to facilitate a smooth transition for those with experience in other languages. Beyond solving real-world problems with features like improved type safety, Kotlin also addresses shortcomings inherent in other languages, such as Java’snotoriousNull Pointer Exception (NPE) issue or the absence of top-level functions. The language maintains a practical approach that is consistently applied throughout its design.

One of the biggest advantages of Kotlin is its ability to work seamlessly with Java. You can use both Java and Kotlin classes together in the same project and freely use any Java library. However, it’s worth noting that this interoperability isn’t without its challenges, such as dealing with nullable types. So, while the integration is robust...

Understanding Kotlin code structure

When you start programming in Kotlin, your first step is typically to create a new file, which usually has the.kt extension.

In contrast to Java, Kotlin doesn’t strictly enforce a one-to-one relationship between the filename and the class name. While you have the flexibility to include multiple public classes within a single Kotlin file, it’s generally considered best practice to group only logically related classes together in one file. Keep in mind that doing so should not make the file excessively long or difficult to read. Additionally, packing multiple public classes into a single file can make it harder to search for specific functionality, as the project overview may not display all available classes.

Naming conventions

As a convention, if your file consists of a single class, it is recommended to name your file the same as your class.

When your file contains multiple classes, the filename should describe the...

Understanding types

Previously, we stated that Kotlin is a type-safe language. Now, let’s delve into a Kotlin-type system and compare it to what Java offers.

Basic types

In some languages, a distinction is made between primitive types and objects. Java, for instance, has theint type for primitive values andInteger for objects. The former is more memory-efficient, while the latter is more expressive due to its support fornull values and additional methods.

However, Kotlin does not make such a distinction between primitives and objects as Java does. From a developer’s perspective, all types in Kotlin are treated equally, and you typically do not deal with primitives directly, which is a significant departure from Java. In Java, you often need to consider whether you are working with primitives or objects when writing code.

Nonetheless, this difference does not imply that Kotlin is less efficient than Java in this regard. The Kotlin compiler optimizes...

Reviewing Kotlin data structures

There are three important groups of data structures we should become familiar with in Kotlin: lists, sets, and maps. We’ll provide a brief overview of each here, and then delve into topics related to data structures, including mutability and tuples, in more detail inChapter 5,Introducing Functional Programming.

Lists

A list in Kotlin representsan ordered collection of elements of the same type. To declare a list, we utilize thelistOf() function instead of calling the constructor of a specific list implementation. This function provides a convenient way to create a list and initialize it with elements:

val hobbits = listOf("Frodo","Sam","Pippin","Merry")

It is important to note that we didn’t explicitly specify the type of the list. This is because type inference can be employed when constructing collections in Kotlin, similar to initializing variables.

If you prefer to...

Control flow

You could say that control flow is the bread and butter of program writing. We will begin by exploring two conditional expressions:if andwhen.

The if expression

In Java, theif statement is notan expression and does not return a value. Let’sexamine the following function, which returns one of two possible values:

public StringgetUnixSocketPolling(boolean isBsd) {if (isBsd) {return"kqueue";    }else {return"epoll";    }}

While this example is easy to understand, it is generally discouraged to have multiplereturn statements, as it can make code more difficult to comprehend.

We can rewrite this method using Java’svar keyword:

public StringgetUnixSocketPolling(boolean isBsd) {varpollingType="epoll";if (isBsd) {        pollingType ="kqueue";    }return pollingType;}

In our previous example, we used a singlereturn statement but had...

Working with text

In the previous sections, we have explored numerous examples of working with text. After all, it is essential to utilize strings to output something as simple as “Hello Kotlin”. Attempting to achieve this without using a string would be both awkward and inconvenient.

In this section, we will delve into more advanced features that enable efficient manipulation of text.

String interpolation

Now, let’s assume we want toprint the results from the previous section.

Firstly, Kotlin provides a convenientprintln() standard function that simplifies the usage of the bulkierSystem.out.println command from Java. We saw this when we looked at theHello World example.

Moreover, Kotlin supports string interpolation using the${} syntax, as seen in one of the previous examples. Let’s revisit the previous example:

val hero ="Batman"println("Archenemy of$hero is${archenemy(hero)}")

Executing the above...

Loops

Now, let’s talk about another common control structure: loops. Loops are essential for developers because they allow us to repeat a block of code multiple times. Without loops, it would be difficult to execute the same code repeatedly (although we will explore alternative approaches to achieve repetition without loops in later chapters).

The for-each loop

One of the mostuseful types of loops in Kotlin is thefor-each loop. This loop allows us to iterate over strings, data structures, and any object that has an iterator. We will learn more about iterators inChapter 4,Getting Familiar with Behavioral Patterns. For now, let’s see an example of using thefor-each loop with a simple string:

for (cin"Word") {    println(c)}

When you run this code, it will display the following output:

>W>o>r>d

Thefor-each loop can also be used with other types of data structures we have discussed, such as lists, sets, and...

Classes and inheritance

Kotlin, being a language that aims for strong interoperability with Java and the JVM, shares a strong affinity with the Java programming language, which is class-based. Therefore, Kotlin also supports classes and classical inheritance. In this section, we will cover the syntax to declare classes, interfaces, abstract classes, and data classes.

Classes

In Kotlin, a class is a collection of data, called properties, and methods. To declare a class, you use the keywordclass, similar to in Java. For example, let’s define a class to represent a player in a video game:

classPlayer {// class members and functions}

To create an instance of a class, you simply call the class constructor using parentheses, without the need for thenew keyword:

val player = Player()

If the class doesn’t have a body or additional members, you can even omit the curly braces:

classPlayer //Nobody,stillvalid

However, classes without...

Inheritance

In Kotlin, you can extend not only abstract classes but also regular classes. Let’s explore this by extending ourPlayer class. Specifically, we’ll create aConfusedPlayer class that moves to (y,x) instead of (x,y) when given the coordinates (x,y).

Initially, let’s create a class inheriting fromPlayer:

classConfusedPlayer(name: String ): ActivePlayer(name)

Here, the round brackets in the abstract classes signify that arguments can be passed to the parent class constructor, similar to Java’ssuper keyword.

However, this code won’t compile. In Kotlin, all classes are final by default, meaning they can’t be inherited unless marked as open. So, let’s modify theActivePlayer class to allow for that:

openclassActivePlayer (...) : Moveable(), DiceRoller {...}

Next, let’s override themove method for theConfusedPlayer:

classConfusedPlayer(name : String): Player(name) {// move...

Extension functions

The last feature we’ll cover inthis chapter, before moving on, is extension functions. Sometimes, you may want to extend the functionality of a class that is declared final or is not under your control. For example, you might like to have a string that has thehidePassword() function from the previous section.

One way to achieve that is to declare a class that wraps the string for us:

dataclassPassword(val password: String) {funhidePassword() ="*".repeat(password.length)}

However, this solution is somewhat inefficient, as it adds another level of indirection.

In Kotlin, there’s a better way to implement this. To extend a class without inheriting from it, we can prefix the function name with the name of the class we’d like to extend:

fun String.hidePassword() ="*".repeat(this.length)

This looks similar to a regular top-level function declaration, but with one crucial change – before...

Introduction to design patterns

Now that we have gained a better understanding of basic Kotlin syntax, we can explore whatdesign patterns are all about.

What are design patterns?

There are several misconceptions surrounding design patterns. Some common misconceptions include:

  • Design patterns are simply missing features in a programming language.
  • Design patterns are not necessary written in dynamic languages such as JavaScript, Ruby, or Python.
  • Design patterns are only relevant to object-oriented languages.
  • Design patterns are only used in enterprise settings.

In reality, design patterns are proven solutions to common problems. They are not limited to a specific programming language, such as Java, and they are not exclusive to a particular group of languages, like the C family. Design patterns can be applied not only to software development but also to software architecture. For example, there are service-oriented architectural patterns...

Bringing it all together

While the aim of this chapter wasn’t to cover all of Kotlin’s syntax features—we’ll explore more throughout this book—this chapter is still fairly lengthy. Therefore, it’s a good time to practice what you’ve learned with a short exercise, if you’re interested.

Exercise

Write a function that takes a list of possibly nullable strings, each representing a sentence.

If a string is either null or empty, the function should printSkipped.

Otherwise, the function should capitalize each word in the string.

The function should return a single list containing all the capitalized words.

Example

For the inputlistOf("hellO wOrlD", null, "fRom", null, "kOtlin"), the function should returnlistOf("Hello", "World", "From", "Kotlin").

Challenge

Do you see an opportunity to use extension functions in this exercise...

Summary

In this chapter, we have covered the main objectives of the Kotlin programming language. We explored how to declare variables, understand basic data types, and handle null values using null safety. We also discussed type inference, which allows the compiler to automatically determine variable types.

We delved into controlling the flow of a program using important commands such asif,when,for, andwhile. Additionally, we examined the keywords used to define classes and interfaces, includingclass,interface,data class, andabstract class. We learned how to create new classes, implement interfaces, and utilize class inheritance.

Furthermore, we emphasized the importance of design patterns in Kotlin and discussed why they are used. This knowledge enables you to develop practical and type-safe programs in Kotlin. While there are many other aspects of the language to explore, we will cover them in future chapters as we encounter real-world applications that require their...

Questions

  1. What is the difference betweenvar andval in Kotlin?
  2. How do you extend a class in Kotlin?
  3. How do you add functionality to a final class?

Learn more on Discord

Join our community’s Discord space for discussions with the author and other readers:

https://discord.com/invite/xQ7vVN4XSc

Left arrow icon

Page1 of 16

Right arrow icon
Download code iconDownload Code

Key benefits

  • Start from basic Kotlin syntax and go all the way to advanced topics like Coroutines and structural concurrency
  • Learn how to select and implement the right design pattern for your next Kotlin project
  • Get to grips with concurrent and reactive microservices with Ktor and Vert.x

Description

For developers who are working with design patterns in Kotlin, this practical guide offers an opportunity to put their knowledge into practice. The book covers classical and modern design patterns, and provides a hands-on approach to implementation, along with associated methodologies.The third edition stays current with Kotlin updates, spanning from version 1.6 onwards, and offers in-depth insights into topics like structured concurrency and context receivers. The book starts by introducing essential Kotlin syntax and the significance of design patterns, covering classic Creational, Structural, and Behavioral patterns. It then progresses to explore functional programming, Reactive, and Concurrent patterns, including detailed discussions on coroutines and structured concurrency. As you navigate through these advanced concepts, you'll enhance your Kotlin coding skills. The book also delves into the latest architectural trends, focusing on microservices design patterns and aiding your decision-making process when choosing between architectures.By the end of the book, you will have a solid grasp of these advanced concepts and be able to apply them in your own projects.

Who is this book for?

This book is for developers who want to apply design patterns they've learned from other languages in Kotlin and build reliable, scalable, and maintainable applications. You'll need a good grasp on at least one programming language before you get started with this book. Familiarity with classical design patterns from your language of choice would be helpful, but you'll still be able to follow along if you code in other languages

What you will learn

  • Utilize functional programming and coroutines with the Arrow framework
  • Use classical design patterns in the Kotlin programming language
  • Scale your applications with reactive and concurrent design patterns
  • Discover best practices in Kotlin and explore its new features
  • Apply the key principles of functional programming to Kotlin
  • Find out how to write idiomatic Kotlin code and learn which patterns to avoid
  • Harness the power of Kotlin to design concurrent and reliable systems with ease
  • Create an effective microservice with Kotlin and the Ktor framework

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date :Apr 29, 2024
Length:474 pages
Edition :3rd
Language :English
ISBN-13 :9781805121602
Vendor :
Google
Category :
Languages :

What do you get with eBook?

Product feature iconInstant access to your Digital eBook purchase
Product feature icon Download this book inEPUB andPDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature iconDRM FREE - Read whenever, wherever and however you want
Product feature iconAI Assistant (beta) to help accelerate your learning

Contact Details

Modal Close icon
Payment Processing...
tickCompleted

Billing Address

Product Details

Publication date :Apr 29, 2024
Length:474 pages
Edition :3rd
Language :English
ISBN-13 :9781805121602
Vendor :
Google
Category :
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99billed monthly
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconSimple pricing, no contract
$199.99billed annually
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconChoose a DRM-free eBook or Video every month to keep
Feature tick iconPLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick iconExclusive print discounts
$279.99billed in 18 months
Feature tick iconUnlimited access to Packt's library of 7,000+ practical books and videos
Feature tick iconConstantly refreshed with 50+ new titles a month
Feature tick iconExclusive Early access to books as they're written
Feature tick iconSolve problems while you work with advanced search and reference features
Feature tick iconOffline reading on the mobile app
Feature tick iconChoose a DRM-free eBook or Video every month to keep
Feature tick iconPLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick iconExclusive print discounts

Frequently bought together


How to Build Android Apps with Kotlin
How to Build Android Apps with Kotlin
Read more
May 2023704 pages
Full star icon4.4 (14)
eBook
eBook
$9.99$83.99
$103.99
Kotlin Design Patterns and Best Practices
Kotlin Design Patterns and Best Practices
Read more
Apr 2024474 pages
Full star icon4.9 (26)
eBook
eBook
$9.99$35.99
$44.99
Mastering Kotlin for Android 14
Mastering Kotlin for Android 14
Read more
Apr 2024370 pages
Full star icon4.8 (10)
eBook
eBook
$9.99$31.99
$39.99
Stars icon
Total$188.97
How to Build Android Apps with Kotlin
$103.99
Kotlin Design Patterns and Best Practices
$44.99
Mastering Kotlin for Android 14
$39.99
Total$188.97Stars icon
Buy 2+ to unlock$7.99 prices - master what's next.
SHOP NOW

Table of Contents

18 Chapters
Section 1: Classical PatternsChevron down iconChevron up icon
Section 1: Classical Patterns
Getting Started with KotlinChevron down iconChevron up icon
Getting Started with Kotlin
Technical requirements
Basic language syntax and features
Understanding Kotlin code structure
Understanding types
Reviewing Kotlin data structures
Control flow
Working with text
Loops
Classes and inheritance
Inheritance
Extension functions
Introduction to design patterns
Bringing it all together
Summary
Questions
Working with Creational PatternsChevron down iconChevron up icon
Working with Creational Patterns
Technical requirements
Singleton
Factory Method
Abstract Factory
Builder
Prototype
Summary
Questions
Understanding Structural PatternsChevron down iconChevron up icon
Understanding Structural Patterns
Technical requirements
Decorator
Adapter
Bridge
Composite
Facade
Flyweight
Proxy
Summary
Questions
Getting Familiar with Behavioral PatternsChevron down iconChevron up icon
Getting Familiar with Behavioral Patterns
Technical requirements
Strategy
Iterator
State
Command
Chain of Responsibility
Interpreter
Mediator
Memento
Visitor
Template Method
Observer
Summary
Questions
Section 2: Reactive and Concurrent PatternsChevron down iconChevron up icon
Section 2: Reactive and Concurrent Patterns
Introducing Functional ProgrammingChevron down iconChevron up icon
Introducing Functional Programming
Technical requirements
Reasoning behind the functional approach
Immutability
Functions as values
Using expressions instead of statements
Recursion
Summary
Questions
Threads and CoroutinesChevron down iconChevron up icon
Threads and Coroutines
Technical requirements
Looking deeper into threads
Introducing coroutines
Jobs
Coroutines under the hood
Dispatchers
Structured concurrency
Summary
Questions
Controlling the Data FlowChevron down iconChevron up icon
Controlling the Data Flow
Technical requirements
Reactive principles
Higher-order functions on collections
Exploring concurrent data structures
Sequences
Channels
Flows
Summary
Questions
Designing for ConcurrencyChevron down iconChevron up icon
Designing for Concurrency
Technical requirements
Deferred Value
Barrier
Scheduler
Pipeline
Fan-Out
Fan-In
Racing
Mutex
Sidekick
Summary
Questions
Section 3: Practical Application of Design PatternsChevron down iconChevron up icon
Section 3: Practical Application of Design Patterns
Idioms and Anti-PatternsChevron down iconChevron up icon
Idioms and Anti-Patterns
Technical requirements
Scope functions
Type checks and casts
An alternative to the try-with-resources statement
Inline functions
Algebraic data types
Recursive functions
Reified generics
Using constants efficiently
Constructor overload
Dealing with nulls
Making asynchronicity explicit
Validating input
Sealed hierarchies versus enums
Context receivers
Summary
Questions
Practical Functional Programming with ArrowChevron down iconChevron up icon
Practical Functional Programming with Arrow
Technical requirements
Getting started with Arrow
Typed errors
High-level concurrency
Software transactional memory
Resilience
Circuit Breaker
Saga
Immutable data
Summary
Questions
Concurrent Microservices with KtorChevron down iconChevron up icon
Concurrent Microservices with Ktor
Technical requirements
Getting started with Ktor
Routing requests
Connecting to a database
Configuration management in Ktor
Organizing routes in Ktor
Achieving concurrency in Ktor
Summary
Questions
Reactive Microservices with Vert.xChevron down iconChevron up icon
Reactive Microservices with Vert.x
Technical requirements
Getting started with Vert.x
Routing requests
Verticles
Handling requests
Testing Vert.x applications
Working with databases
Understanding Event Loop
Communicating with Event Bus
Summary
Questions
AssessmentsChevron down iconChevron up icon
Assessments
Other Book You May EnjoyChevron down iconChevron up icon
Other Book You May Enjoy
IndexChevron down iconChevron up icon
Index

Recommendations for you

Left arrow icon
Debunking C++ Myths
Debunking C++ Myths
Read more
Dec 2024226 pages
Full star icon5 (1)
eBook
eBook
$9.99$31.99
$39.99
Go Recipes for Developers
Go Recipes for Developers
Read more
Dec 2024350 pages
eBook
eBook
$9.99$31.99
$39.99
50 Algorithms Every Programmer Should Know
50 Algorithms Every Programmer Should Know
Read more
Sep 2023538 pages
Full star icon4.5 (64)
eBook
eBook
$9.99$39.99
$49.99
$49.99
Asynchronous Programming with C++
Asynchronous Programming with C++
Read more
Nov 2024424 pages
Full star icon5 (1)
eBook
eBook
$9.99$33.99
$41.99
Modern CMake for C++
Modern CMake for C++
Read more
May 2024504 pages
Full star icon4.7 (13)
eBook
eBook
$9.99$39.99
$49.99
Learn Python Programming
Learn Python Programming
Read more
Nov 2024616 pages
Full star icon3.5 (2)
eBook
eBook
$9.99$35.99
$39.99
Learn to Code with Rust
Learn to Code with Rust
Read more
Sep 202557hrs 40mins
Full star icon5 (1)
Video
Video
$9.99$74.99
Modern Python Cookbook
Modern Python Cookbook
Read more
Jul 2024818 pages
Full star icon4.9 (17)
eBook
eBook
$9.99$43.99
$54.99
Right arrow icon

Customer reviews

Top Reviews
Rating distribution
Full star iconFull star iconFull star iconFull star iconHalf star icon4.9
(26 Ratings)
5 star92.3%
4 star7.7%
3 star0%
2 star0%
1 star0%
Filter icon Filter
Top Reviews

Filter reviews by




StevenMay 24, 2024
Full star iconFull star iconFull star iconFull star iconFull star icon5
This book is an exceptional guide for developers looking to master Kotlin and elevate their coding skills through effective design patterns. The book is well-structured, providing clear and concise explanations of complex concepts, making them accessible even to those who may be newer to design patterns. What sets this book apart is its practical approach; each pattern is accompanied by real-world examples and best practices that are directly applicable to everyday programming challenges. Whether you're a novice or an experienced developer, this book is a valuable resource that enhances your understanding of Kotlin and empowers you to write more efficient, maintainable, and scalable code. Highly recommended for anyone serious about advancing their Kotlin proficiency
Amazon Verified reviewAmazon
JonMay 06, 2024
Full star iconFull star iconFull star iconFull star iconFull star icon5
A recent project change has required me to learn Kotlin over the last couple of months. I'm experienced with languages such as C, C++, Java, Swift, and Python, and wanted a book that didn't waste time explaining to me what loops are, but instead showed me how the unique language features could be used to implement an impressively large number of software design patterns.The first chapter gives a good overview of the everyday elements of the language, like how to define vals and vars, functions, classes, create controls flows and loops, and assignments. The following chapters then dive into how to use Kotlin exclusive features to implement design patterns ranging from the original selection from the Gang of Four's book to more modern ones.The examples used throughout the book are interesting and entertaining, often showing multiple ways of implementing a pattern in Kotlin.Overall an excellent book that has furthered my understanding better and quicker than any other resource I've found.
Amazon Verified reviewAmazon
Chandan ChakrabortyOct 08, 2024
Full star iconFull star iconFull star iconFull star iconFull star icon5
I recently had the pleasure of reading the 3rd edition of 𝘒𝘰𝘵𝘭𝘪𝘯 𝘋𝘦𝘴𝘪𝘨𝘯 𝘗𝘢𝘵𝘵𝘦𝘳𝘯𝘴 𝘢𝘯𝘥 𝘉𝘦𝘴𝘵 𝘗𝘳𝘢𝘤𝘵𝘪𝘤𝘦𝘴 by Alexey Soshin, and it has truly elevated my understanding of structuring Kotlin applications. This book is a goldmine for both Kotlin beginners and experienced developers, offering practical insights into crafting 𝘴𝘤𝘢𝘭𝘢𝘣𝘭𝘦, 𝘮𝘢𝘪𝘯𝘵𝘢𝘪𝘯𝘢𝘣𝘭𝘦, 𝘢𝘯𝘥 𝘦𝘧𝘧𝘪𝘤𝘪𝘦𝘯𝘵 Kotlin code.The book covers the fundamentals of Kotlin and dives into advanced topics such as 𝘊𝘰𝘳𝘰𝘶𝘵𝘪𝘯𝘦𝘴 𝘢𝘯𝘥 𝘴𝘵𝘳𝘶𝘤𝘵𝘶𝘳𝘢𝘭 𝘤𝘰𝘯𝘤𝘶𝘳𝘳𝘦𝘯𝘤𝘺. It also teaches about various 𝘥𝘦𝘴𝘪𝘨𝘯 𝘱𝘢𝘵𝘵𝘦𝘳𝘯𝘴 with practical examples, making it easier to apply them in real projects. The book also introduces 𝘧𝘶𝘯𝘤𝘵𝘪𝘰𝘯𝘢𝘭 𝘱𝘳𝘰𝘨𝘳𝘢𝘮𝘮𝘪𝘯𝘨 with the Arrow library and explores 𝘣𝘢𝘤𝘬𝘦𝘯𝘥 𝘥𝘦𝘷𝘦𝘭𝘰𝘱𝘮𝘦𝘯𝘵 𝘶𝘴𝘪𝘯𝘨 𝘒𝘵𝘰𝘳 for microservices.I highly recommend this book for anyone looking to improve their Kotlin skills and implement effective design patterns in their projects. Whether you're building 𝘈𝘯𝘥𝘳𝘰𝘪𝘥 𝘢𝘱𝘱𝘴 or working on 𝘣𝘢𝘤𝘬𝘦𝘯𝘥 𝘴𝘺𝘴𝘵𝘦𝘮𝘴 𝘸𝘪𝘵𝘩 𝘒𝘰𝘵𝘭𝘪𝘯, this book will sharpen your approach to writing high-quality software.
Amazon Verified reviewAmazon
FeralstrykeMay 21, 2024
Full star iconFull star iconFull star iconFull star iconFull star icon5
Having delved into Kotlin a few years ago, I was excited to get back into the language with the help of "Kotlin Design Patterns and Best Practices." This book has proven to be an invaluable resource, especially with its comprehensive showcase of the latest developments in Kotlin.The book starts with a concise refresher on Kotlin basics, which is perfect for someone like me who needed to brush up on the essentials. It quickly transitions from the fundamentals to an in-depth exploration of design patterns, tailored specifically for Kotlin. This approach ensures that you're not bogged down with unnecessary basics, making it an excellent resource for those already familiar with other programming languages.One of the standout features of this book is its practical approach to design patterns. Each pattern is introduced with clear explanations and illustrated with engaging examples. I appreciated how the authors didn't just present a one-size-fits-all solution but instead explored multiple ways to implement each pattern in Kotlin. This method not only solidified my understanding of design patterns but also showcased the unique features of Kotlin that make these implementations more efficient and elegant.What sets this book apart is its focus on best practices. The authors delve into the reasoning behind each best practice, explaining the trade-offs and benefits. This thorough examination helped me understand why certain approaches are favored in Kotlin, which has greatly improved my coding practices.The book doesn't just stop at traditional design patterns; it also covers modern patterns and practices. The sections on functional programming and concurrency were particularly enlightening. Learning how to effectively use Kotlin's coroutines for managing concurrent tasks has been a game-changer for me. The final chapters on building microservices using popular frameworks provided a practical perspective on how to apply these patterns in real-world applications.Overall, "Kotlin Design Patterns and Best Practices" is an excellent resource for both revisiting and advancing your Kotlin skills. It has equipped me with a deeper understanding of how to leverage Kotlin's features to write more robust and maintainable code. Whether you're getting back into Kotlin or looking to enhance your knowledge, this book is a highly recommended read.
Amazon Verified reviewAmazon
MarkusLJun 14, 2024
Full star iconFull star iconFull star iconFull star iconFull star icon5
Despite having no professional programming experience (yet) and having mostly programmed with Python, when I got an opportunity to get an early review copy of 3rd edition of Alexey Soshin’s book in exchange for a little review, I decided to jump in. Kotlin is enticing after all: it’s a bit functional and it targets the JVM! Design Patterns -tag in the book’s title almost sells the book short as the book is about much more than just the classic Gang of Four methods. After launching with Kotlin fundamentals recap, the book is in (roughly) equal parts about the classical design patterns (Section 1), functional and concurrent patterns (Section 2) and practical applications of all of them (Section 3). The Kotlin fundamentals -part has a specific approach of comparing Kotlin’s syntax to Java. Java comparisons don’t necessarily feel helpful for a person with most experience with Python, but they do make me appreciate Kotlin’s more concise syntax. For me, the most interesting part of this section were the serious considerations about immutability. Kotlin has strong ties to two worlds, OOP because of connection to Java and functional paradigm because of languages philosophy and this shows in the approach. The classic Gang of Four design patterns are examined in the book thoroughly and with good examples. As expected, specific Kotlin methods are described in conjunction with use of each design pattern. Alexey Soshin has clearly worked with each of the design patterns in order to break through levels of abstraction which easily make programming concepts feel disconnected from reality. I am no expert in using design patterns, but this section seems solid and worth studying with an actual project at hand. Section 2 starts with a practical observation that functional programming patterns are particularly adept at handling parallel tasks. I think this is a good take and it’s a smart idea to learn using immutable structures and other functional programming tools from the start when learning parallel and concurrent programming. Multithreaded design is explained with practical examples of potential pitfalls such as heavy memory usage and slow processes when concurrency is not sufficient. One chapter is dedicated to enhancing coroutines with reactive principles, higher-order functions and concurrent data structures. Concurrent design patterns explored in this section include: deferred value, barrier, scheduler, pipeline, fan-out, fan-in, racing, mutex and sidekick. Section 3 dives deep into idioms and anti-patterns as well few specific libraries. Functional library Arrow gets its own chapter as well as more hands-on chapters with Ktor and Vert.x. Book ends with Assessments -chapter which presents FAQ of topics presented in the book. All in all the book seems to be a well thought out exploration into its topics!
Amazon Verified reviewAmazon
  • Arrow left icon Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • ...
  • Arrow right icon Next

People who bought this also bought

Left arrow icon
50 Algorithms Every Programmer Should Know
50 Algorithms Every Programmer Should Know
Read more
Sep 2023538 pages
Full star icon4.5 (64)
eBook
eBook
$9.99$39.99
$49.99
$49.99
Event-Driven Architecture in Golang
Event-Driven Architecture in Golang
Read more
Nov 2022384 pages
Full star icon4.9 (10)
eBook
eBook
$9.99$39.99
$49.99
$44.99
The Python Workshop Second Edition
The Python Workshop Second Edition
Read more
Nov 2022600 pages
Full star icon4.6 (19)
eBook
eBook
$9.99$41.99
$51.99
Template Metaprogramming with C++
Template Metaprogramming with C++
Read more
Aug 2022480 pages
Full star icon4.6 (13)
eBook
eBook
$9.99$37.99
$46.99
Domain-Driven Design with Golang
Domain-Driven Design with Golang
Read more
Dec 2022204 pages
Full star icon4.4 (18)
eBook
eBook
$9.99$35.99
$44.99
Right arrow icon

About the author

Profile icon Alexey Soshin
Alexey Soshin
LinkedIn iconGithub icon
Alexey Soshin is a software architect with 18 years of experience in the industry. He started exploring Kotlin when Kotlin was still in beta, and since then has been a big enthusiast of the language. He's a conference speaker, published writer, and the author of a video course titled Pragmatic System Design
Read more
See other products by Alexey Soshin
Getfree access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook?Chevron down iconChevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website?Chevron down iconChevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook?Chevron down iconChevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support?Chevron down iconChevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks?Chevron down iconChevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook?Chevron down iconChevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.

Create a Free Account To Continue Reading

Modal Close icon
OR
    First name is required.
    Last name is required.

The Password should contain at least :

  • 8 characters
  • 1 uppercase
  • 1 number
Notify me about special offers, personalized product recommendations, and learning tips By signing up for the free trial you will receive emails related to this service, you can unsubscribe at any time
By clicking ‘Create Account’, you are agreeing to ourPrivacy Policy andTerms & Conditions
Already have an account? SIGN IN

Sign in to activate your 7-day free access

Modal Close icon
OR
By redeeming the free trial you will receive emails related to this service, you can unsubscribe at any time.

[8]ページ先頭

©2009-2025 Movatter.jp