- UID
- 3599
- 性别
- 保密

齊天大聖
- 积分
- 778
F 币- 433 元
- 最后登录
- 2021-10-14
贡献- 266 点
- 注册时间
- 2018-11-8
权杖- 0 枚
惯用编译器:GFortran / G77 for Linux

专家
齊天大聖
F 币- 433 元
贡献- 266 点
|
本帖最后由 lookbook 于 2018-11-8 13:23 编辑
各位大佬好,代码如下:
module m_a
implicit none
type :: bar(p, q)
integer, kind :: p=4
integer, len :: q=10
real(kind=p),dimension(q) :: x
contains
procedure,pass(this) :: barsub
end type bar
contains
subroutine barsub(this)
class(bar), intent(in) :: this
write (*,*) this%x
end subroutine barsub
end module
gfortran编译错误如下:
procedure,pass :: barsub
1
Error: Argument ‘this’ of ‘barsub’ with PASS(this) at (1) must be of the derived-type ‘bar’
小白还望大佬们赐教,谢谢!
|
|