- Objective-C Memory Management Essentials
- Gibson Tang Maxim Vasilkov
- 192字
- 2021-07-23 20:09:10
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: "When you do a new
, malloc
, or alloc
, what the operating system does is that it is giving your program a chunk of memory on the heap."
A block of code is set as follows:
int main(int argc, char *argv[]) { SomeObject *myOwnObject; // myOwnObject is created in main myOwnObject = [[SomeObject alloc] init]; // myOwnObject can be used by other objects [anotherObject using:myOwnObject];
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: "In Xcode, go to the target Build Phases tab, open the Compile Sources group, and you will be able to see the source file list."
- Python 3.7網(wǎng)絡(luò)爬蟲快速入門
- MongoDB for Java Developers
- UML+OOPC嵌入式C語言開發(fā)精講
- MySQL數(shù)據(jù)庫管理與開發(fā)(慕課版)
- 教孩子學(xué)編程:C++入門圖解
- 實(shí)戰(zhàn)Java高并發(fā)程序設(shè)計(jì)(第3版)
- R Deep Learning Cookbook
- Java:High-Performance Apps with Java 9
- 批調(diào)度與網(wǎng)絡(luò)問題的組合算法
- NGINX Cookbook
- JSP程序設(shè)計(jì)實(shí)例教程(第2版)
- Illustrator CC平面設(shè)計(jì)實(shí)戰(zhàn)從入門到精通(視頻自學(xué)全彩版)
- SQL Server 2008 R2數(shù)據(jù)庫技術(shù)及應(yīng)用(第3版)
- Java高并發(fā)編程詳解:深入理解并發(fā)核心庫
- Python人工智能項(xiàng)目實(shí)戰(zhàn)