是否可以使用1 assign()來讀寫文件?是否可以讀取和寫入文件只打開一次?
我的意思是這樣的:
assign(fl, 'file.txt');
reset(fl)
// I know, that when I use reset - I have only read permission,
// but is there any other option to read and write opening the file only once?
read(fl, variable);
write(fl, 'asdf);
close(fl);
您的問題不明確,因爲您沒有描述FL的類型。如果是文本(文件),則不存在這種方式。 –