Читать книгу Programming Kotlin Applications - Бретт Мак-Лахлин, Brett McLaughlin - Страница 4

List of Illustrations

Оглавление

1 Chapter 1FIGURE 1.1 Download IntelliJ from the JetBrains download page.FIGURE 1.2 IntelliJ comes prepackaged with a system-specific installation pr...FIGURE 1.3 You'll generally be either creating a project from scratch or imp...FIGURE 1.4 IntelliJ makes getting going in Kotlin simple and prompts you on ...FIGURE 1.5 Kotlin code should go in the src/ folder.FIGURE 1.6 IntelliJ automatically formats code and adds sensible syntax high...FIGURE 1.7 You can click the green Run button and select the first option to...FIGURE 1.8 The empty output of your program (which will soon be non-empty) d...FIGURE 1.9 Good IDEs help you quickly find and fix errors.FIGURE 1.10 Why doesn't this override of toString() work?

2 Chapter 2FIGURE 2.1 Your IDE should let you easily get to your source code as well as...FIGURE 2.2 Moving a class to a new package is basically a refactoring, which...FIGURE 2.3 Person is now nested under its containing package.FIGURE 2.4 IDEs will help you keep constructor properties straight.

3 Chapter 4FIGURE 4.1 Code from Person expanded completelyFIGURE 4.2 You can collapse code blocks to the { … } form in your IDEFIGURE 4.3 Toggle between expanded and collapsed with the + and – icons

4 Chapter 5FIGURE 5.1 Collection and several related classes

5 Chapter 7FIGURE 7.1 An if statement adjusts how your code is executed and the flow of...FIGURE 7.2 Program execution has two different flows in this example.

6 Chapter 10FIGURE 10.1 A function always has the same basic parts.FIGURE 10.2 A good IDE gives you default values for a function, even from a ...FIGURE 10.3 IDEs help with arguments, especially if you're naming arguments ...FIGURE 10.4 An unused anonymous functionFIGURE 10.5 A function assigned to a variable is treated like the function i...

7 Chapter 11FIGURE 11.1 Good IDEs warn you of conflicts in scope function variables.FIGURE 11.2 Distinguishing between a String and a String?FIGURE 11.3 An IDE helping with the this reference in a with expressionFIGURE 11.4 Kotlin suggests using run to both initialize an instance and get...FIGURE 11.5 The also function provides an it reference to the context object...

8 Chapter 12FIGURE 12.1 An inheritance hierarchy using interfaces, abstract classes, and...FIGURE 12.2 The go() function in Vehicle eventually is handled by drive() im...

9 Chapter 13FIGURE 13.1 Kotlin's reference documentation is thorough and helpful.FIGURE 13.2 The Kotlin Koans aren't for everyone, but they're great for inte...

Programming Kotlin Applications

Подняться наверх