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 中,我可以简单地编写share ='denyrw'open 语句来防止文件被多访问。然而,在 GNU FORTRAN 中,该声明似乎不起作用。
share ='denyrw'
拒绝在 FORTRAN 中读取/写入文件的正确语法是什么?
share是 ifort 特定的说明符,不是标准的。如果你使用它,不要指望它会被其他编译器尊重。action可能是一种选择,但它对文件系统是全局的。我认为 fortran 标准中没有任何说明符。
share
action
您将在此处找到 fortran 标准
所以这个故事的寓意是:要么坚持标准,要么坚持你的编译器