请问Fortran里动态数组可以被设置成全局变量吗?如果可以要怎么设置呢?
2019-04-02
展开全部
例:
program main
use subs
implicit none
简燃
real(8) :: a(5)
call test1
枝李call test2(a)
print *, a
end program
module subs
contains
subroutine test1()
use sharemod
implicit none
allocate(share(5))
share = (/1., 2., 3., 5., 6./)
猛咐迟 end subroutine
subroutine test2(output)
use sharemod
implicit none
real(8), intent(out) :: output(5)
output = share
end subroutine test2
end module subs
module sharemod
implicit none
save
real(8), allocatable, dimension(:) :: share
end module sharemod
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询