.D 文件扩展名
2 种文件类型使用 .d 扩展名。
D Source Code File
| 开发者 | 不适用 |
| 受欢迎程度 |
3.8 | 35 票 |
什么是 D 文件?
Source code written in the D programming language; similar to C++, but also influenced by C#, Java, and Eiffel; can be opened and edited in a text editor, but requires a D compiler to be compiled into an executable program.
可打开 D 文件的程序
Source Dependency File
| 开发者 | 不适用 |
| 受欢迎程度 |
3.3 | 7 票 |
A D file is a source dependency file generated by GCC, a GNU C compiler. It contains dependencies in plain text that describe the files that were used to create compiled objects (.O files) by a C compiler. D files are generated automatically when the -MMD flag is activated when compiling with GCC.
更多信息
D files are typically used by GNU Make, a utility used to control the creation of executables and other non-source files of a program. D files may also be opened by any text editor since they store plain text.