There are a couple of use cases in which I like using ASSOCIATE:
- Pure aesthetics and easier-to-read code:
Lets say that one has an intricated derived type (more than 3 levels of indirection), it is then quite nice to have an ASSOCIATE wrapping the actual implementation of the method to facilitate the mental picture of what is happening
imaging handling a mesh with coordinates and connectivities in such a way:
associate( X=>mytype%list_objects(index)%coordinates , &
& connectivity=>mytype%list_objects(index)%connectivity )
! here work with X(:,:) and connectivity(:,:)
end associate
- Data buffers recycling
Lets say that one would like to allocate just once a buffer to then work with small batches of data to avoid reallocations ā¦
you could do something like
real, allocatable :: data(:)
...
allocate( data(big_size) )
...
associate( variable1 => data(1) , variable2 => data(2:5) )
! do something with variable1 & variable2
end associate
.. ! later on in the same scope
associate( variable3 => data(1:10) , variable4 => data(11) )
! do something with variable3 & variable4
end associate
No data copied, no risks with pointers being nullified with the data hanging somewhere, and no need of declaration at the header.