- Mastering High Performance with Kotlin
- Igor Kucherenko
- 166字
- 2021-06-25 20:55:20
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "To override finalize(), all you need to do is simply declare it without using the override keyword (and it can't be private)."
A block of code is set as follows:
class C {
protected fun finalize() {
// finalization logic
}
}
Any command-line input or output is written as follows:
computation
CacheThread 8
NetworkThread 8
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "The IntelliJ IDEA has a special function for this. Go to the CalculatorMachine class and open the Generate pane."
Warnings or important notes appear like this.
Tips and tricks appear like this.