假设我有一个 Fortran 派生类型
type :: atype
integer :: n
integer :: a(10)
integer, allocatable :: b(:)
end type
我有两个这种类型的实例
type(atype) :: t1, t2
当我做以下任务时到底会发生什么?
t2 = t1
我对此感兴趣,因为我想正确地制作派生类型变量的副本,这意味着标量组件应该相等,数组组件的每个元素应该相等,可分配数组应该具有相同的分配大小并且元素应该相等。目前我只想编写一个子程序来正确复制和分配组件。
subroutine copy_atype(from, to)
type(atype) :: from, to
to%n = from%n
to%a = from%a
if (allocated(to%b)) deallocate(to%b)
if (allocated(from%b) then
allocate(to%b(size(from%b)))
to%b = from%b
end if
end subroutine
我将不胜感激有关标准中适当部分的指示。
我正在使用 gfortran 4.7。