急问fortran编程问题
programarraytest2implicitnoneinteger,allocatable::a(:)integer::b(2)=(/1,3/)callsub(a,...
program arraytest2
implicit none
integer,allocatable::a(:)
integer::b(2)=(/1,3/)
call sub(a,b)
print*,a
pause
end program
subroutine sub(a,b)
integer,intent(out),allocatable::a(:)
integer,intent(in)::b
allocate(a(size(b)))
a=b+1
end subroutine
编译出现一个错误:
Error: A dummy argument name is invalid in this context. [A]
实际上,我的源程序是要从subroutine输出一个数组,其长度是在subroutine运行过程中确定的。因此我在主程序里声明integer,allocatable::a(:),在subroutine里声明integer,intent(out),allocatable::a(:)。
因源程序较长,不详细贴出了。谢谢您的回答,任何建议都非常感激!
Error是出在subroutine里面
integer,intent(out),allocatable::a(:)
这一行。 展开
implicit none
integer,allocatable::a(:)
integer::b(2)=(/1,3/)
call sub(a,b)
print*,a
pause
end program
subroutine sub(a,b)
integer,intent(out),allocatable::a(:)
integer,intent(in)::b
allocate(a(size(b)))
a=b+1
end subroutine
编译出现一个错误:
Error: A dummy argument name is invalid in this context. [A]
实际上,我的源程序是要从subroutine输出一个数组,其长度是在subroutine运行过程中确定的。因此我在主程序里声明integer,allocatable::a(:),在subroutine里声明integer,intent(out),allocatable::a(:)。
因源程序较长,不详细贴出了。谢谢您的回答,任何建议都非常感激!
Error是出在subroutine里面
integer,intent(out),allocatable::a(:)
这一行。 展开
3个回答
展开全部
Fortran2003支持,估计您的编译器有点儿老。
我已在编程爱好者论坛回复了您的问题,不过论坛里的asymptotic兄回复得更完美:)
我已在编程爱好者论坛回复了您的问题,不过论坛里的asymptotic兄回复得更完美:)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
由于数组a没有定义大小,所以不可出现在虚参里,可将a设置成全局变量,从虚参中删除,我习惯用module,更改程序如下:
module adata
implicit none
integer,allocatable::a(:)
endmodule
program arraytest2
use adata
implicit none
integer::b(2)=(/1,3/)
call sub(b)
print*,a
pause
end program
subroutine sub(b)
use adada
integer::b
allocate(a(size(b)))
a=b+1
end subroutine
module adata
implicit none
integer,allocatable::a(:)
endmodule
program arraytest2
use adata
implicit none
integer::b(2)=(/1,3/)
call sub(b)
print*,a
pause
end program
subroutine sub(b)
use adada
integer::b
allocate(a(size(b)))
a=b+1
end subroutine
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询