定义 fortran 整数数组
我是 Fortran 新手。 any1 能告诉我如何定义一个整数数组吗? 例如 我想定义一个包含 12 个月内的天数的数组。 就像...
integer,allocatable(12,1) :: days
days=[31,28,31,30,31,30,31,31,30,31,30,31]
这个语法正确吗?如果不是,请告诉我正确的。
谢谢 普拉文
I am a newbie in Fortran.
Can any1 tell me how to define an integer array in prior.
E.g.
I want to define an array with no.of days in 12 months.
like...
integer,allocatable(12,1) :: days
days=[31,28,31,30,31,30,31,31,30,31,30,31]
Is this syntax correct? If not, please let me know the correct one.
Thanks
Praveen
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您想要动态分配的数组,请尝试以下操作:
If you want a dynamically allocated array, try the following:
integer,Dimension(12) :: a = (/ 31, 28, 31, 30, ... /)
对于“静态”数组。对于 Fortran 2003 及更高版本,
[ ]
而不是(/ /)
是正确的;我知道的所有编译器都允许该语法,即使它们没有完全实现 F2003。对于动态数组:也是一个选项。
integer, dimension(12) :: a = (/ 31, 28, 31, 30, ... /)
for "static" array. the
[ ]
instead of(/ /)
is correct for Fortran 2003 and later; all the compilers I know allow that syntax even though they do not implement fully F2003. For dynamic array:is an option too.
在 FORTRAN 77 中,我想说
这是声明和初始化合二为一。
如果需要,您也可以将两者分开:
In FORTRAN 77, I'd say
That's declaration and initialization in one.
If you want, you can also separate the two:
可能不需要可分配,是吗,因为它只是一个常量数组:
Probably doesn't need to be allocatable, does it, since it's just a constant array: