📄 allocate.f90
字号:
! Test allocation and deallocation.program test_allocate call t1 (.true.) call t1 (.false.) call t2contains! Implicit deallocation and saved aloocated variables.subroutine t1(first) real, allocatable, save :: p(:) real, allocatable :: q(:) logical first if (first) then if (allocated (p)) call abort () else if (.not. allocated (p)) call abort () end if if (allocated (q)) call abort () if (first) then allocate (p(5)) else deallocate (p) end if allocate (q(5))end subroutine! Explicit deallocation.subroutine t2() real, allocatable :: r(:) allocate (r(5)) pr = 1.0 deallocate (r) if (allocated(r)) call abort ()end subroutineend program
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -