Fortran 模块中的格式化语句
我有一个带有许多子例程的模块,这些子例程都使用相同的输出格式集。 现在,我必须在每个子例程中声明格式。有没有办法在模块中声明它们,以便所有子例程都可以访问它们?
I have a module with a number of subroutines that all use the same set of formats for output.
Right now, I have to declare the formats in every subroutine. Is there a way to declare them in the module so all the subroutines have access to them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在模块级别将格式存储为字符。例如
You can store the format as a character at the module level. E.g.