Clicky
Showing changes from revision #1 to #2:
(追記) Added (追記ここまで) | (削除) Removed (削除ここまで) | (削除) Chan (削除ここまで)(追記) ged (追記ここまで)
allocated(array)
checks the status of whether x
is allocated.
(削除) Fortran 95 and later (削除ここまで)(追記) Fortran 95 (追記ここまで)(追記) and later (追記ここまで)
Inquiry function
result = allocated(array)
array
- the argument shall be an allocatable
array.The return value is a scalar logical
with the default logical kind type parameter. If array
is allocated, allocated(array)
is .true.
; otherwise, it returns .false.
program test_allocated
integer :: i = 4
real(4), allocatable :: x(:)
if (allocated(x) .eqv. .false.) allocate(x(i))
end program test_allocated