Fortran 模块中的格式化语句

发布于 2024-11-19 18:45:49 字数 87 浏览 3 评论 0原文

我有一个带有许多子例程的模块,这些子例程都使用相同的输出格式集。 现在,我必须在每个子例程中声明格式。有没有办法在模块中声明它们,以便所有子例程都可以访问它们?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

oО清风挽发oО 2024-11-26 18:45:49

您可以在模块级别将格式存储为字符。例如


module foo
  implicit none
  character(len=20), parameter :: form = "(1X,A)"
contains
subroutine bar
  ...
   write(my_unit, form) "Hello, World"
end subroutine bar
end module foo

You can store the format as a character at the module level. E.g.


module foo
  implicit none
  character(len=20), parameter :: form = "(1X,A)"
contains
subroutine bar
  ...
   write(my_unit, form) "Hello, World"
end subroutine bar
end module foo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文