gpt4 book ai didi

d - D编程语言中的文件I/O

转载 作者:行者123 更新时间:2023-12-01 07:05:50 24 4
gpt4 key购买 nike

我正在尝试遵循一个简单的教程,但无法使用以下代码:

void main(string args[])
{
auto f = File("test.txt", "w");
f.writeln("Hello, Worlds!");
}

我在 Windows 上使用 dmd 编译器。

最佳答案

如果您使用的是 D2,则需要 import std.stdio; :

import std.stdio;
void main(string args[])
{
auto f = File("test.txt", "w");
f.writeln("Hello, Worlds!");
}

如果您使用的是 D1,则 File类(class)在 std.stream ,API 略有不同:
import std.stream;
void main() {
auto f = new File("test.txt", FileMode.Out);
f.writeLine("Hello, Worlds!");
}

关于d - D编程语言中的文件I/O,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3528839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com