allocate.f90

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 27 行

F90
27
字号
! Snippet to test various allocate statementsprogram test_allocate   implicit none   type t      integer i      real r   end type   type pt      integer, pointer :: p   end type   integer, allocatable, dimension(:, :) :: a   type (t), pointer, dimension(:) :: b   type (pt), pointer :: c   integer, pointer:: p   integer n   n = 10   allocate (a(1:10, 4))   allocate (a(5:n, n:14))   allocate (a(6, 8))   allocate (b(n))   allocate (c)   allocate (c%p)   allocate (p)end program

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?