H
haiping
Unregistered / Unconfirmed
GUEST, unregistred user!
var
outfile:text;
path:string
begin
if bout then //假如bout为真,输出到文本
assignFile(outFile, path);
rewrite(outFile)
else //否则输出到标准设备。
outfile:=Output
//[red]这里我想把outfile指向标准输出设备,但出错。[/red]
................. //Output是system单元声明的系统变量。
end;
是不是text类型不能赋值给text类型?
outfile:text;
path:string
begin
if bout then //假如bout为真,输出到文本
assignFile(outFile, path);
rewrite(outFile)
else //否则输出到标准设备。
outfile:=Output
//[red]这里我想把outfile指向标准输出设备,但出错。[/red]
................. //Output是system单元声明的系统变量。
end;
是不是text类型不能赋值给text类型?