fortran里面,开始声明项里面 use commonData 是什么意思呢
发布网友
发布时间:2022-05-25 23:43
我来回答
共1个回答
热心网友
时间:2022-06-18 16:17
这个是引用mole的。 commonData和 commonMethod都是mole名。
mole是用来封装一些函数,子程序或者声明一些变量的。
举个栗子。
mole aaa
integer::xx,yy
end mole
program bb
use aaa
implicit none
xx=5
yy=6
end program
可以看到在主程序中没有对xx,yy进行定义,但是由于用了use aaa,所以说主程序会自动链接mole aaa中的内容。
就酱紫。