Atomic Kotlin
eBook - ePub

Atomic Kotlin

  1. English
  2. ePUB (mobile friendly)
  3. Available on iOS & Android
eBook - ePub

About this book

For both beginning and experienced programmers! From the author of the multi-award-winning Thinking in C++ and Thinking in Java and a Kotlin team member comes a book that breaks concepts into small, easy-to-digest "atoms, " along with exercises supported by hints and solutions directly inside IntelliJ IDEA! Full support at www.AtomicKotlin.com.

Learn the Successor to Java Today!

  • No programming background necessary.
  • Summaries for experienced programmers.
  • Easy steps via very small chapters ("atoms").
  • Free accompanying exercises/solutions within IntelliJ Idea.
  • Gives you a strong Kotlin foundation.
  • Kotlin is cleaner, more consistent and far more powerful than Java.
  • Increase programming productivity with Kotlin's clear, concise syntax.
  • Produce safer, more reliable programs.
  • Kotlin easily interacts with Java.
  • Effortlessly migrate by adding pieces of Kotlin to an existing Java project.
  • Support for Windows, Mac and Linux.
  • Free version of Intellij IDEA includes extensive Kotlin support.
  • Book resources, live seminars, workshops and consulting available at www.AtomicKotlin.com.

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
No, books cannot be downloaded as external files, such as PDFs, for use outside of Perlego. However, you can download books within the Perlego app for offline reading on mobile or tablet. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Atomic Kotlin by Bruce Eckel,Svetlana Isakova in PDF and/or ePUB format, as well as other popular books in Informatica & Programmazione orientata agli oggetti. We have over one million books available in our catalogue for you to explore.

Information

Table of contents

  1. Title Page
  2. Table of Contents
  3. Copyright
  4. Section I: Programming Basics
  5. Introduction
  6. Why Kotlin?
  7. Hello, World!
  8. var & val
  9. Data Types
  10. Functions
  11. if Expressions
  12. String Templates
  13. Number Types
  14. Booleans
  15. Repetition with while
  16. Looping & Ranges
  17. The in Keyword
  18. Expressions & Statements
  19. Summary 1
  20. Section II: Introduction to Objects
  21. Objects Everywhere
  22. Creating Classes
  23. Properties
  24. Constructors
  25. Constraining Visibility
  26. Packages
  27. Testing
  28. Exceptions
  29. Lists
  30. Variable Argument Lists
  31. Sets
  32. Maps
  33. Property Accessors
  34. Summary 2
  35. Section III: Usability
  36. Extension Functions
  37. Named & Default Arguments
  38. Overloading
  39. when Expressions
  40. Enumerations
  41. Data Classes
  42. Destructuring Declarations
  43. Nullable Types
  44. Safe Calls & the Elvis Operator
  45. Non-Null Assertions
  46. Extensions for Nullable Types
  47. Introduction to Generics
  48. Extension Properties
  49. break & continue
  50. Section IV: Functional Programming
  51. Lambdas
  52. The Importance of Lambdas
  53. Operations on Collections
  54. Member References
  55. Higher-Order Functions
  56. Manipulating Lists
  57. Building Maps
  58. Sequences
  59. Local Functions
  60. Folding Lists
  61. Recursion
  62. Section V: Object-Oriented Programming
  63. Interfaces
  64. Complex Constructors
  65. Secondary Constructors
  66. Inheritance
  67. Base Class Initialization
  68. Abstract Classes
  69. Upcasting
  70. Polymorphism
  71. Composition
  72. Inheritance & Extensions
  73. Class Delegation
  74. Downcasting
  75. Sealed Classes
  76. Type Checking
  77. Nested Classes
  78. Objects
  79. Inner Classes
  80. Companion Objects
  81. Section VI: Preventing Failure
  82. Exception Handling
  83. Check Instructions
  84. The Nothing Type
  85. Resource Cleanup
  86. Logging
  87. Unit Testing
  88. Section VII: Power Tools
  89. Extension Lambdas
  90. Scope Functions
  91. Creating Generics
  92. Operator Overloading
  93. Using Operators
  94. Property Delegation
  95. Property Delegation Tools
  96. Lazy Initialization
  97. Late Initialization
  98. Appendices
  99. Appendix A: AtomicTest
  100. Appendix B: Java Interoperability