Fortran 中的流式传输和直接访问
我意识到我可以在编译器中模拟流访问,而无需使用直接访问字符文件。
有什么我应该注意的陷阱或可移植性问题吗?
我的程序看起来运行正常。
I realized that I can emulate stream access in a compiler without it using a direct access file of characters.
Are there any pitfalls or portability issues I should be aware of?
My program seems to work OK.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现直接访问文件有时确实用于此目的。示例是 FLIBS 中的库 binstreams。此方法带来的问题也在实现说明下进行了描述。这种方法很方便,因为有时并非每台 HPC 计算机都可用最新的编译器。
I found that direct access files are indeed sometimes used for this purpose. The example is library binstreams in FLIBS. The issues that comes with this approach are described there as well under implementation notes. This approach can be handy, because there sometimes not the newest compilers available on every HPC computer.