根据documentation,readf
应该返回uint
。但即便是这个简单的例子也无法编译:
hello.d的
import std.stdio;
void main() {
int x;
uint r = readf("%s", &x);
}
错误消息:
hello.d(5): Error: expression readf("%s",& x) is void and has no value
我在这里错过了什么吗?
我正在使用dmd(Digital Mars D)编译器v2.050。