Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在正在研究某人的 Fortran 代码文件:
REWIND NRTAP REWIND NWTAP REWIND 9
据我所知,倒带语句将点设置为初始点。 但是,当变量名在倒带状态之后,这是什么意思?
rewind 关键字后面的内容指定文件要倒回到其初始点的逻辑单元。
在执行程序之前,可能有一个连接相关逻辑单元的 OPEN 语句。NRTAP 和 NWTAP 将是在别处被赋予整数值的变量或常量。