本文介绍了从输入初始化的 Fortran PARAMETER 变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在 Fortran 中,PARAMETER
属性是在运行时还是编译时设置的?我想知道是否可以在运行时传递数组的大小并将其设置为 PARAMETER
.
In Fortran, is the PARAMETER
attribute set at runtime or compilation time?I was wondering if I can pass in the size the of the array at run time and have this set as PARAMETER
.
这可以吗?如果是这样,怎么做?如果不是,为什么?
Can this be done? If so, how? If not, why?
推荐答案
如果要在运行时定义数组的大小,则需要动态分配.所有参数(常量)都必须定义为编译时间.
You need dynamic allocation if the size of your array is to be defined as runtime. All parameter (constants) must be defined as compiling time.
这篇关于从输入初始化的 Fortran PARAMETER 变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!