我試圖過程指針傳遞給一個派生類型結合-過程 module mymodule
use mystoremodule
implicit none
private
type, abstract, public :: mytype
contains
procedure :: parse
end type mytype
contains
s
我在編寫使用名稱列表嵌套在派生類型中的可分配數組時遇到問題。下面是一個簡單的例子。我如何修改程序以使派生類型內的可分配數組工作,就好像它沒有嵌套一樣? program test
implicit none
type struct_foo
integer, allocatable :: nested_bar(:)
end type struct_foo