大家好!
我的原始定义段:
[Fortran] 纯文本查看 复制代码
type node
real(8) :: InletCoor(2)
real(8) :: ExitCoor(2)
integer :: BlockNo(2)
type(node),pointer :: afore
type(node),pointer :: next
end type node
type(node),pointer :: p,q
p.blockno=Injector !执行代码:
错误提示:
p.blockno=Injector 1
Error: Unclassifiable statement at (1)
为啥出错呢? 我已经定义了啊
请版主、高人指教啊, 初学fortran,摸索中。。。。。
|