当前位置:  开发笔记 > 编程语言 > 正文

如何分配TextFile变量?

如何解决《如何分配TextFile变量?》经验,为你挑选了1个好方法。

以下代码尝试将一个TextFile变量分配给另一个,但不编译:

[Error] Operator not applicable to this operand type

program Project1;
{$APPTYPE CONSOLE}
uses SysUtils;
var t1, t2: TextFile;
begin
  t1 := t2; // <-- [Error] Operator not applicable to this operand type
end.

如果有可能分配给一个文本文件变量,人们可以能够之间切换System.Output,Sytem.ErrOutput和/或其它TextFile容易实例.但是,作业可能吗?



1> Ondrej Kelle..:

TextFile似乎不支持对变量的赋值,但您可以声明并使用指针类型:

type
  PTextFile = ^TextFile;

var
  F: PTextFile;
begin
  F := @Output;
  Writeln(F^, 'Hello');

  F := @ErrOutput;
  Writeln(F^, 'Hello');

  AssignFile(F^, 'test.txt');
  Rewrite(F^);
  Writeln(F^, 'Hello');
  CloseFile(F^);
end;

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有