如何解决递归类型的内部组件不会在内部分配中复制
考虑以下Fortran程序:
program test_prg
implicit none
type :: recursive_block
type(recursive_block),allocatable :: subblocks(:,:)
end type
type(recursive_block) :: top_level
top_level = init_recursive()
print *,loc(top_level % subblocks(1,1) % subblocks)
deallocate(top_level % subblocks)
contains
function init_recursive() result(res)
type(recursive_block) :: res
type(recursive_block),allocatable :: inner(:,:)
allocate(inner(1,1))
allocate(inner(1,1) % subblocks(1,1))
print *,loc(inner(1,1) % subblocks)
res % subblocks = inner
end function
end program
与gfortran 10.2一起编译,此代码在deallocate(top_level % subblocks)
上崩溃,并显示以下消息:
free(): double free detected in tcache 2
我怀疑这可能与以下事实有关:两个打印语句都打印相同的数字,即top_level % subblocks(1,1) % subblocks
的地址与inner(1,1) % subblocks
的地址匹配,后者是局部变量的组成部分,应该在函数退出时被释放。
这是gfortran错误吗?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。