Fortran 2008 - class 中的数组变量

Fortran 2008 - array variable in class

我有一个 class,我需要在其中存储 neuron_tconnection_t.

类型的对象
!> Class representing a general network
type :: net_t
    private

    character(:), allocatable                 :: net_type              !< Type of the net
    integer(kind=integer_4neuro)              :: num_of_neurons        !< Number of neurons in the net
    character(:), allocatable                 :: training_method       !< Used training method

    class(neuron_t), allocatable              :: neuron_arr(:)         !< Array containing all neurons
    integer(kind=integer_4neuro), allocatable :: input_neuron_arr(:)   !< Array of input neuron indices
    integer(kind=integer_4neuro), allocatable :: output_neuron_arr(:)  !< Array of output neuron indices
    class(connection_t), allocatable          :: connection_arr(:)     !< Array of all connections

contains
    !> Prints information about the network to the standard output.
    procedure :: print_info => print_info_impl

    !> Saves the network instance to the Fortran binary file
    procedure :: save_net_bin => save_net_bin_impl

end type net_t

interface net_t
    !> Constructor of net_t class
    !! Loads complete info about network from file
    !! @param[in] filepath Path to the file with network configuration
    !! @return Returns pointer to the new instance of the class net_t
    module procedure :: new_net_1
end interface net_t

我试过这样初始化数组

    allocate(new_obj)

    ! Init object
    do i=1,5
        new_obj%neuron_arr(i) =  mock_neuron_t()
    end do

但我收到以下错误:

         new_obj%neuron_arr(i) =  mock_neuron_t()
        1
Error: Nonallocatable variable must not be polymorphic in intrinsic assignment at (1) - check that there is a matching specific subroutine for '=' operator

你知道吗,我做错了什么? mock_neuron_t 扩展类型 neuron_t,所以应该没问题。

编辑:

neuron_tconnection_t class 都是抽象的,所以我在添加 allocate(new_obj%neuron_arr):

后出现以下错误
     allocate(new_obj%neuron_arr)
             1
Error: Allocating new_obj of ABSTRACT base type at (1) requires a type-spec or source-expr

         new_obj%neuron_arr(i) =  mock_neuron_t()
        1
Error: Nonallocatable variable must not be polymorphic in intrinsic assignment at (1) - check that there is a matching specific subroutine for '=' operator

您不能只在内部赋值中赋值给多态变量 (=)。您只能对可分配变量执行此操作,并且数组元素不是可分配变量,尽管它是可分配数组的一部分。请记住所有数组元素必须具有相同的动态类型

因此,如果您想让 neuron_arr(:) 的不同元素具有不同的类型,那是不允许的。

但是您可以将数组分配给某个单一类型并使用 select type 类型保护。

allocate(new_obj)

allocate(new_obj%neuron_arr)  !this allocates it to the declared type neuron_t!

! Init object
select type(a => new_obj%aneuron_arr)
  type is(neuron_t)
    do i=1,5
      a(i) =  mock_neuron_t()
    end do
end select

但是,如果您总是有一种固定类型,那么 type(neuron_t) 就足够了吗?