- Asynchronous Android
- Steve Liles
- 178字
- 2021-07-21 17:51:45
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
protected void onPause() { super.onPause(); if (task != null) task.cancel(false); }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
protected void onPause() {
super.onPause();
if (task != null)
task.cancel(false);
}
Any command-line input or output is written as follows:
> telnet 192.168.0.4 4444
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking on the Next button moves you to the next screen."
推薦閱讀
- Qt 5 and OpenCV 4 Computer Vision Projects
- Docker技術入門與實戰(第3版)
- Photoshop智能手機APP UI設計之道
- HoloLens Beginner's Guide
- Xcode 7 Essentials(Second Edition)
- 動手玩轉Scratch3.0編程:人工智能科創教育指南
- PyTorch自然語言處理入門與實戰
- Python機器學習:手把手教你掌握150個精彩案例(微課視頻版)
- Raspberry Pi Home Automation with Arduino(Second Edition)
- Python從入門到精通
- QGIS Python Programming Cookbook(Second Edition)
- Data Science Algorithms in a Week
- SQL Server 2012 數據庫應用教程(第3版)
- Oracle Database XE 11gR2 Jump Start Guide
- Node.js實戰:分布式系統中的后端服務開發