- D Cookbook
- Adam D. Ruppe
- 219字
- 2021-07-16 11:50:43
Introduction
The D language borrows from several other programming languages, including statically typed languages such as C, C++, and Java, as well as dynamic languages such as Ruby, Python, and JavaScript. The overall syntax is very similar to C; the use of curly braces to denote blocks, declarations in the form of typename initializer, and more. In fact, a lot of, but not all, C code will compile in D too.
D also is aimed at convenience, productivity, and modeling power. These principles can be illustrated with D's type inference feature. Type inference means you can write code without explicitly thinking of and repeating a variable's type. This gives the convenience of using a dynamic language, without sacrificing the compile-time checks of static typing. You'll use type inference throughout your programs. Any variable declared without a type (typically, the keyword auto
is used to declare a variable without an explicit type) has an inferred type, where the type is automatically determined by the right-hand side of the assignment. D is one of the fastest compiling languages available, and it gives quick edit-run cycles that help rapid development in dynamic languages. Modeling power comes in the form of D's rich code generation, introspection, and user-defined types, which you'll start exploring in this chapter when you look at structs and classes.
- .NET之美:.NET關(guān)鍵技術(shù)深入解析
- Advanced Machine Learning with Python
- OpenCV實(shí)例精解
- Vue.js前端開發(fā)基礎(chǔ)與項(xiàng)目實(shí)戰(zhàn)
- JavaScript+jQuery網(wǎng)頁特效設(shè)計(jì)任務(wù)驅(qū)動(dòng)教程(第2版)
- HTML5 and CSS3 Transition,Transformation,and Animation
- C語言實(shí)驗(yàn)指導(dǎo)及習(xí)題解析
- RabbitMQ Cookbook
- 常用工具軟件立體化教程(微課版)
- Extending Unity with Editor Scripting
- 并行編程方法與優(yōu)化實(shí)踐
- 軟件工程與UML案例解析(第三版)
- Apache Kafka 1.0 Cookbook
- 中小企業(yè)網(wǎng)站建設(shè)與管理(靜態(tài)篇)
- Natural Language Processing with Java Cookbook