主题:fortran重复定义问题
不知道为什么说我重复定义了,请大侠看看啊
我使用module语句了,例如:
module global
integer bj(5000,2),bbj(5000),back(5000,3)
real*8 p(5000,2),rr(5000)
common n,bj(5000,2),bbj(5000),back(5000,3),p(5000,2),rr(5000)
end module
错误: : Error: The dimensions of this array have been defined more than once. [BJ]
我使用module语句了,例如:
module global
integer bj(5000,2),bbj(5000),back(5000,3)
real*8 p(5000,2),rr(5000)
common n,bj(5000,2),bbj(5000),back(5000,3),p(5000,2),rr(5000)
end module
错误: : Error: The dimensions of this array have been defined more than once. [BJ]