- The Modern C++ Challenge
- Marius Bancila
- 141字
- 2021-06-25 22:01:20
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Mount the downloaded WebStorm-10*.dmg disk image file as another disk in your system."
A block of code is set as follows:
int main()
{
std::cout << "Hello, World!\n";
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
template<typename C, typename... Args>
void push_back(C& c, Args&&... args)
{
(c.push_back(args), ...);
}
Any command-line input or output is written as follows:
$ mkdir build
$ cd build
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select System info from the Administration panel."
Warnings or important notes appear like this.
Tips and tricks appear like this.
- 演進式架構(原書第2版)
- PyTorch自然語言處理入門與實戰
- 跟老齊學Python:輕松入門
- Python爬蟲開發與項目實戰
- Full-Stack Vue.js 2 and Laravel 5
- Hands-On Automation Testing with Java for Beginners
- 運用后端技術處理業務邏輯(藍橋杯軟件大賽培訓教材-Java方向)
- 搞定J2EE:Struts+Spring+Hibernate整合詳解與典型案例
- JavaScript程序設計:基礎·PHP·XML
- App Inventor 2 Essentials
- IBM RUP參考與認證指南
- Joomla!Search Engine Optimization
- 體驗之道:從需求到實踐的用戶體驗實戰
- Web開發新體驗
- HikariCP數據庫連接池實戰