- D Cookbook
- Adam D. Ruppe
- 388字
- 2021-07-16 11:50:42
What this book covers
Chapter 1, Core Tasks, will get you started with D and cover the tasks you can perform with D's core language features that differ from other popular programming languages.
Chapter 2, Phobos – The Standard Library, introduces you to the standard D library to perform common tasks, including generating random numbers, writing a network client and server, and performing type conversions.
Chapter 3, Ranges, covers the range concept, which is central to D algorithms. Ranges allow you to write and consume generators, views on various collections, and perform generic transformations of data.
Chapter 4, Integration, explores integrating D with the outside world, including creating Windows-based applications, using C libraries, and extending C++ applications with D.
Chapter 5, Resource Management, discusses how to manage memory and other resources in D, including tips on why, when, and how to use the garbage collector effectively.
Chapter 6, Wrapped Types, dives into the world of user-defined types, showing you how to extend and restrict types via cheap wrapper abstractions.
Chapter 7, Correctness Checking, shows how to use D's bug-hunting features such as testing, assertions, and documentation, and the correct way to do conditional compilation.
Chapter 8, Reflection, teaches you about the rich introspection capabilities D provides, including tips learned through years of experience which stretch the limits of the language.
Chapter 9, Code Generation, demonstrates several techniques to automate the creation of new code to write efficient, generic, and specialized code, including a primer on creating your own mini languages inside D.
Chapter 10, Multitasking, introduces you to the options D offers for concurrency and parallelism.
Chapter 11, D for Kernel Coding, will get you started with writing bare metal code in D, stripping out the runtime library to say hello directly through the PC's video hardware and then handling interrupts sent back by the keyboard with D's low-level features.
Chapter 12, Web and GUI Programming, showcases some of the libraries I've written over the years that show how to make a dynamic website and desktop graphics windows while discussing my practical experience from writing these libraries, which will give you a leg up when you write your own code.
Appendix, Addendum, briefly shows how to use D on ARM processors, including systems without an operating system, and other small topics that didn't fit elsewhere in the book.
- Data Visualization with D3 4.x Cookbook(Second Edition)
- C語言程序設計(第3版)
- Docker進階與實戰
- Apache Spark 2 for Beginners
- Practical DevOps
- 基于免疫進化的算法及應用研究
- Mastering Scientific Computing with R
- EPLAN實戰設計
- Python算法指南:程序員經典算法分析與實現
- HTML5+CSS3 Web前端開發技術(第2版)
- 智能手機APP UI設計與應用任務教程
- Illustrator CS6設計與應用任務教程
- 跟戴銘學iOS編程:理順核心知識點
- ASP.NET求職寶典
- Hacking Android