- Learn Kotlin Programming(Second Edition)
- Stephen Samuel Stefan Bocutiu
- 565字
- 2021-06-24 14:13:31
Object-Oriented Programming in Kotlin
Kotlin is an object-oriented programming (OOP) language with support for higher-order functions. If you don't know what higher-order functions mean, then do not worry, as there is, Chapter 5, Higher-Order Functions and Functional Programming, dedicated to them. If you have been using a functional language prior to Kotlin, then you will find many functional programming constructs supported in Kotlin.
Over time, software complexity has increased, and OOP abstraction has allowed us to model problems we have to solve in terms of objects. You can view each object as a minicomputer on its own—it has a state and can perform actions. An object through its available actions exhibits some sort of behavior; therefore, there is a clear analogy between objects/entities and real life.
The first characteristic of an object-oriented abstraction was defined by Alan Key, one of the creators of the first successful OOP language—Smalltalk. In his book, The Early History Of Smalltalk, he makes the following points:
- Everything is an object: An object is nothing but a block of memory allocated and configured according to a design/definition. From the problem space you have to solve, you take all the logical entities and translate them into objects in your program.
- Objects communicate by sending and receiving messages (in terms of objects): Your program will be a set of objects performing different actions as a result of calling methods that each one exposes.
- Objects have their own memory (in terms of objects): This should be read as, you can create an object by composing other objects.
- Every object is an instance of a class (which must be an object): Think of a class as a blueprint specifying what the type can do.
- The class holds the shared behavior for its instances (in the form of objects in a program list): This means all the objects of a particular type can receive the same messages; in other words, they expose the same methods.
Kotlin provides full support for the preceding points but also supports fully the three pillars of any modern OOP language—encapsulation, inheritance, and polymorphism. Encapsulation means that a group of related fields and methods is treated as an object. Inheritance describes the capability of creating a new class from an existing one. Polymorphism means you can use different classes interchangeably despite the fact that each one implements its methods differently. Throughout this chapter, we will go into a bit more detail about how language constructs support this.
OOP abstraction is meant to help us alleviate the problems encountered with large code bases. This makes it easier for us to understand, maintain, and evolve code bases and keep them bug-free by providing us with the following:
- Simplicity: Program objects model the real world, thus reducing complexity and streamlining the program structure
- Modularity: Each object's internal workings are decoupled from other parts of the system
- Modifiability: Changes inside an object do not affect any other part of a program if you have done your design right
- Extensibility: An object's requirements change quite often, and you can quickly respond to them by adding new objects or modifying existing ones
- Reusability: Objects can be used in other programs
In this chapter you will learn:
- How to define and use classes and interfaces
- When to choose interfaces over abstract classes
- When to choose inheritance over composition
- Spring Cloud Alibaba核心技術與實戰案例
- 計算思維與算法入門
- Python 深度學習
- JavaScript 網頁編程從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- FreeSWITCH 1.6 Cookbook
- 算法精粹:經典計算機科學問題的Python實現
- 征服RIA
- Kali Linux Wireless Penetration Testing Beginner's Guide(Third Edition)
- Learning Unity 2D Game Development by Example
- Getting Started with React Native
- 現代C++編程實戰:132個核心技巧示例(原書第2版)
- C/C++數據結構與算法速學速用大辭典
- 軟件測試教程
- Clojure for Java Developers
- Maven for Eclipse