fortran 显式接口是什么意思啊?

发布网友 发布时间:2022-03-05 16:46

我来回答

2个回答

热心网友 时间:2022-03-05 18:15

在主程序里面写上
program test
implicit none
interface
subroutine sub(a,b)
integer::a(2)
integer::b
end interface

integer,target::a(2)=(/1,2/)
integer,pointer::p(:)
integer::b=0

p=>a
print*,p
pause

call sub(p,b)
pause
end

热心网友 时间:2022-03-05 19:33

你这个子程序调用的变量a是整形数组,但是主程序里p是指针那
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com