- Swift 2 Blueprints
- Cecil Costa
- 192字
- 2021-07-09 21:36:40
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: " Now it time to develop the viewDidLoad method."
A block of code is set as follows:
class Person{ var name:String var age:Int init(name: String, age:Int) { self.name = name self.age = age } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
class Person{ var name:String var age:Int var address:String init(name: String, age:Int) { self.name = name self.age = age } }
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Next button moves you to the next screen."
- Python 3.7網(wǎng)絡(luò)爬蟲快速入門
- Python數(shù)據(jù)分析基礎(chǔ)
- ASP.NET Core 5.0開發(fā)入門與實(shí)戰(zhàn)
- DevOps for Networking
- BeagleBone Media Center
- 趣學(xué)Python算法100例
- PHP+MySQL網(wǎng)站開發(fā)技術(shù)項(xiàng)目式教程(第2版)
- 程序員考試案例梳理、真題透解與強(qiáng)化訓(xùn)練
- Banana Pi Cookbook
- MySQL數(shù)據(jù)庫管理與開發(fā)(慕課版)
- C#程序設(shè)計(jì)
- C語言程序設(shè)計(jì)
- Scala編程實(shí)戰(zhàn)
- TypeScript 2.x By Example
- 并行編程方法與優(yōu)化實(shí)踐