- 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.
- 基于粒計算模型的圖像處理
- 零基礎(chǔ)搭建量化投資系統(tǒng):以Python為工具
- Web全棧工程師的自我修養(yǎng)
- Java程序設(shè)計
- Python爬蟲、數(shù)據(jù)分析與可視化:工具詳解與案例實戰(zhàn)
- Django 3.0入門與實踐
- Django 3.0應(yīng)用開發(fā)詳解
- Spring技術(shù)內(nèi)幕:深入解析Spring架構(gòu)與設(shè)計原理(第2版)
- Arduino可穿戴設(shè)備開發(fā)
- Learning Splunk Web Framework
- C++ System Programming Cookbook
- Java EE程序設(shè)計與開發(fā)實踐教程
- 你好!Python
- Implementing Splunk(Second Edition)
- 微軟辦公軟件認(rèn)證考試MOS Access 2013實訓(xùn)教程