توضیحاتی در مورد کتاب Fundamental Kotlin: revised, Third Edition
نام کتاب : Fundamental Kotlin: revised, Third Edition
ویرایش : 3
عنوان ترجمه شده به فارسی : کاتلین بنیادی: تجدید نظر شده، ویرایش سوم
سری :
نویسندگان : MilosVasic
ناشر : Independently published
سال نشر : 2023
تعداد صفحات : 0
ISBN (شابک) : 9788692030727
زبان کتاب : English
فرمت کتاب : epub درصورت درخواست کاربر به PDF تبدیل می شود
حجم کتاب : 4 مگابایت
بعد از تکمیل فرایند پرداخت لینک دانلود کتاب ارائه خواهد شد. درصورت ثبت نام و ورود به حساب کاربری خود قادر خواهید بود لیست کتاب های خریداری شده را مشاهده فرمایید.
فهرست مطالب :
Table of Contents
About “Fundamental” book serial 8
What is different compared to the Second Edition? 9
What is this book about? 9
Who is this book for? 9
Fonts used in this book 9
Ubuntu 9
JetBrains Mono 10
About the author 11
Preface 12
What is Kotlin? 13
Some basic concepts explained 14
What is a statically typed programming language? 14
What is Java Virtual Machine or JVM? 14
Java bytecode 14
Basic characteristics of Kotlin 15
Where is it used? 16
Server-side development 16
Android mobile development 16
JavaScript development 17
Native development 17
Kotlin for data science 17
Building programs 20
Installing Kotlin compiler 20
SDKMAN 20
Homebrew 20
MacPorts 21
Compiling Kotlin source code 21
Kotlin to JavaScript 23
Using library 23
Kotlin/Native 24
Installing Kotlin/Native 24
Compiling to native 25
Build automation tools 26
Gradle 26
Maven 27
Apache Ant 27
Griffon 27
Kobalt 28
Creating Kotlin project 29
Creating IDE project 30
Kotlin and Gradle 30
Creating Gradle project 34
Converting Java source code to Kotlin 36
Fundamentals 38
A short history of Java 39
What is Java? 41
Java Runtime Environment 42
What is JVM? 42
What is the Java ecosystem? 43
How Kotlin relates to Java? 43
Lifecycle of the program 43
Basic syntax 45
The lexical structure of Kotlin programs 46
Packages and code organization 51
Importing source code 53
The statements and expressions 54
Constants and variables 56
Working with functions 58
Passing arguments to functions 59
Default arguments 60
Working with exceptions 61
Throwable 62
Try / Catch / Finally block 64
The most frequently used exception types 67
Data type fundamentals 68
Numbers in Kotlin 68
Characters in Kotlin 71
Booleans in Kotlin 72
Arrays 73
Strings in Kotlin 75
String templates 77
Nullability 78
Multiple assignment 84
Type checks and smart casts 85
Operators and expressions 89
Equality 89
Arithmetic operators 90
Assignment operators 92
Unary operators 93
Increment and decrement operators 94
Comparisons 95
Logical operators 96
Operator overloading 98
Conditional expressions 100
If expression 101
When 103
Classes 110
Constructors 111
Secondary constructors 113
Class members 114
Class properties 114
Inheritance 117
Overriding 119
Object-oriented features 121
Data classes 121
Abstraction 123
Object 125
Class companion object 126
Interfaces 133
Properties in Interfaces 137
Interfaces Inheritance 138
Overriding conflicts 139
Functional interfaces 141
Nested classes 142
Inner classes 143
Functions 144
Invoke 145
Higher-order functions 145
Named arguments 147
Single-Expression functions 149
Variable argument functions 150
Spread operator 151
Local functions 153
Infix functions 154
Tail-recursive functions 155
Anonymous functions 156
Inline Functions 157
Lambdas 158
Closures 161
Control flow 161
If expression 162
Loops 163
For 163
While loop 166
Do / While loop 167
Ranges 168
Jump expressions 171
Break operator 171
Continue operator 171
Jump operator labels 172
Return with labels 173
Collections 176
Immutable lists 177
Immutable maps 182
Immutable sets 187
Mutable collections 193
Traversing 196
Predicates 197
Mapping 199
Flattening 200
Combining “map” and “flatMap” 201
Finding maximum and minimum 203
Sorting 204
Sum 204
Grouping 205
Partitioning 205
Folding 206
References 207
Strong references 208
Memory leaks 209
Weak references 213
Soft references 215
Phantom references 216
References summary 216
Atomic references 217
This reference 219
Generic data types 220
Generic functions 222
Generics wildcards 224
Enumeration 225
Sealed classes 229
Annotations 231
Annotation constructors 233
Lambdas in annotations 234
Arrays in annotations 234
Most frequently used annotations 234
How to use annotations 235
Any 238
Unit 239
Nothing 239
Visibility modifiers 241
Extensions 243
Extending class properties 245
Extending objects 246
Extension function literals 248
Scope functions 249
This and It 250
Scope functions return value 250
“Let” scope function 251
“Width” scope function 252
“Run” scope function 253
“Apply” scope function 254
“Also” scope function 255
“takeIf” and “takeUnless” 256
Singleton pattern in Kotlin 257
Lazy initialization 258
Properties with late initialization 260
Delegating behavior 261
Delegating properties 262
Property delegation requirements 264
Observable 265
Builders 266
String builder 266
Map builders 267
Destructuring 268
Mapped properties 269
Concurrency 269
Threads 270
Thread execution 273
Coroutines 275
Coroutine scope building 277
Coroutine job 278
Summary 281