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.
使用 Fortran77 并且我想打开一个文件,然后它将转到不会覆盖我的文件的文件末尾。
与 FORTRAN90/95 中的 OPEN(**,ACCESS="SEQUENTIAL",POSITION="APPEND") 相同
严格遵循标准,在 f77 中没有简单的可移植方法。但是,许多 f77 编译器确实支持access=append作为扩展。
你有充分的理由严格遵守 f77 吗?甚至没有共同的扩展?