- 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."
- Learning Cython Programming
- Python數據可視化:基于Bokeh的可視化繪圖
- LabVIEW入門與實戰開發100例
- Visual Basic編程:從基礎到實踐(第2版)
- 微服務設計原理與架構
- INSTANT MinGW Starter
- UI智能化與前端智能化:工程技術、實現方法與編程思想
- Easy Web Development with WaveMaker
- Responsive Web Design by Example
- Mastering Linux Security and Hardening
- Flask Web開發:基于Python的Web應用開發實戰(第2版)
- Ext JS 4 Plugin and Extension Development
- SQL Server實例教程(2008版)
- Python面向對象編程(第4版)
- Learning NHibernate 4