我有一个用户定义的类型vector
。在另一种类型中,我有一个可分配的向量数组。我想有一个指向这个可分配数组中的单个向量的指针。所以我想我会这样做:
type another_type
type(vector),allocatable,target::my_vectors(:)
end type
和
type(vector),pointer::pointed_vec
但是当我编译时,编译器抱怨:
This attribute specification is not valid for a component definition statement.
我可以有一个指向可分配数组中单个项目的指针吗?可能吗?