Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなユーザー定義型を使用しますfoo。
foo
type, public :: foo integer :: a(4) end type foo
xおよびそのタイプの変数:
x
type(foo) :: x
はx%a配列セクションですか?
x%a
いいえ。
x%a(:) は配列セクションで、x%a は配列全体を参照します。