📄 pr23373-2.f90
字号:
program main implicit none real, dimension (:), pointer :: x x => null () x => test () if (.not. associated (x)) call abort if (size (x) .ne. 10) call abortcontains function test real, dimension (:), pointer :: test if (associated (x)) call abort allocate (test (10)) if (associated (x)) call abort end function testend program main
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -