如果我有一个可终结的派生类型的可分配数组,当数组超出范围时,是否会在每个单独的元素上调用终结器?
这是一个小代码示例,用于说明问题:
module LeakyTypeModule
implicit none
private
type, public :: LeakyType
real, pointer :: dontLeakMe(:) => null()
contains
procedure :: New
final :: Finalizer
end type
contains
subroutine New(self, n)
class(LeakyType), intent(out) :: self
integer , intent(in) :: n
allocate(self%dontLeakMe(n))
self%dontLeakMe = 42.0
end subroutine
subroutine Finalizer(self)
type(LeakyType), intent(inout) :: self
if (associated(self%dontLeakMe)) deallocate(self%dontLeakMe)
end subroutine
end module
program leak
use LeakyTypeModule
implicit none
type(LeakyType), allocatable :: arr(:)
allocate(arr(1))
call arr(1)%New(1000)
deallocate(arr)
end program
请注意,此程序会泄漏dontLeakMe
New()
LeakyType
方法中分配的elemental
数组。起初这对我来说有点令人惊讶,但后来我发现可以通过声明终结器$(function() {
"use strict";
$(".specs div:gt(0)").hide();
$(".form-field-control input").click(function() {
var clicked = $(".form-field-control input").index(this);
var descriptionToShow = $(".specs div:eq(" + clicked + ")");
descriptionToShow.show();
$(".specs div").not(descriptionToShow).hide();
});
});
来解决问题。 gfortran和ifort都以相同的方式运行,所以我认为这种行为遵循Fortran 2003标准。
任何人都可以证实吗?说实话,我很难理解标准在这一点上所说的内容。
现在我也看不到在中宣布我所有的终结者元素的多少用处。这有什么应用我忽略了吗?
答案 0 :(得分:2)
确定是否调用最终程序以及调用哪个最终程序的规则与根据等级匹配要求解决通用程序的规则相同。
注意到问题标记为Fortran 2003 ...
Fortran 2003及之前的元素程序必须是PURE。如果你的终结器需要做一些与pure属性不相容的东西(这是相当普遍的),那么终结器不能是元素的,你需要编写特定于等级的变体。
Fortran 2008引入了IMPURE ELEMENTAL的概念,这对于编写终结器非常方便。