在编写一个库来读取图像值时,我遇到了以下问题:我定义了一个名为realimage
. 在这种类型中,引用了一个函数,该函数返回一个数组作为结果。
module typedefinition
implicit none
type realimage
integer :: byteorder = 0
contains
procedure :: initialize => initializereal
procedure :: pxvalues => pxvaluesreal ! Array valued function
end type realimage
contains
function pxvaluesreal(this, x, y) result(val)
implicit none
type(realimage) this
real val(5)
integer :: x, y
...
end function
end module
使用 gfortran 编译模块并使用 调用函数image1%pxvalues(x,y)
,我总是收到以下错误消息:
main.f95: In function ‘testtype’:
main.f95:15: internal compiler error
如果我直接在主程序中调用该函数(pxvaluesreal(image1,x,y))
,一切正常。
是否可以在类型定义中定义数组维度以告诉编译器,函数返回值的维度是什么?