📄 allocate.f90
字号:
! 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -