请问Fortran里动态数组可以被设置成全局变量吗?如果可以要怎么设置呢?

 我来答
天河流纹石
2014-11-14 · TA获得超过1.3万个赞
知道大有可为答主
回答量:7624
采纳率:76%
帮助的人:4047万
展开全部

fortran 没有全局变量。


共享数据的方式有:

  1. 虚参传桐猛递。可使用动态数组

  2. common 公共区。不可使用局源桥动态数组,老语法,不推荐。

  3. module 模块。可使用动裂档态数组,强力推荐

来自:求助得到的回答
匿名用户
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
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式