- Learning C++ Functional Programming
- Wisnu Anggoro
- 157字
- 2021-07-02 20:51:33
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, and user input are shown as follows: "the auto keyword can also be applied to a function to deduce a function's return type automatically."
A block of code is set as follows:
int add(int i, int j)
{
return i + j;
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
// Initializing a string variable
Name n = {"Frankie Kaur"};
cout << "Initial name = " << n.str;
cout << endl;
New terms and important words are shown in bold.
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- Clojure Programming Cookbook
- Visual C++程序設(shè)計學(xué)習(xí)筆記
- Learn Type:Driven Development
- JavaScript:Functional Programming for JavaScript Developers
- 程序員數(shù)學(xué):用Python學(xué)透線性代數(shù)和微積分
- Access 2010數(shù)據(jù)庫基礎(chǔ)與應(yīng)用項目式教程(第3版)
- Effective Python Penetration Testing
- Corona SDK Mobile Game Development:Beginner's Guide(Second Edition)
- 微服務(wù)從小白到專家:Spring Cloud和Kubernetes實戰(zhàn)
- Java語言程序設(shè)計教程
- Instant Apache Camel Messaging System
- Visual Basic 程序設(shè)計實踐教程
- Pandas 1.x Cookbook
- Zend Framework 2 Cookbook
- HTML5程序開發(fā)范例寶典