为 Fortran 模块内的整数数组赋值
我有一个 Fortran 模块,名为 QFoo。它定义了一个类型QFooType。
我想将整数数组“is_n”的所有元素初始化为 0,并希望在模块内执行此操作。有人可以帮忙吗?谢谢你!
module QFoo
type QFooType
integer::i
integer, dimension(50) :: is_n
end type QFooType
!-----------
! I know the following code is wrong
! but I want to initialize all the is_n elements to 0
!-----------
! do i = 1, 50
! is_n(i) = 0
! enddo
!-----------
end module QFoo
I have a module in Fortran called QFoo. It defines a type QFooType.
I want to initialize all the elements of integer array 'is_n' to 0 and want to do it within the module. Could someone help? Thank you!
module QFoo
type QFooType
integer::i
integer, dimension(50) :: is_n
end type QFooType
!-----------
! I know the following code is wrong
! but I want to initialize all the is_n elements to 0
!-----------
! do i = 1, 50
! is_n(i) = 0
! enddo
!-----------
end module QFoo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
适用于最新版本的英特尔 Fortran 编译器。我对 Fortran 95 标准的阅读表明这是标准行为。
works on the latest version of the Intel Fortran compiler. My reading of the Fortran 95 standard suggests that this is standard behaviour.