我正在使用几种派生类型。出于调试目的,我想使用generic :: write(formatted)
很好地在屏幕上打印它们。
这是一个显示我的意思的示例程序:
program main
use :: test_mod
implicit none
type(test1) :: t1
type(test2) :: t2
t1 = test1(name="t1")
t2 = test2(name="t2", t1)
print *, 'Test1:', t1
print *, 'Test2:', t2
end program
这是模块:
module test_mod
implicit none
private
public :: test1, test2
type :: test1
character(2) :: name
contains
procedure, private :: test1_writef
generic :: write(formatted) => test1_writef
end type test1
type :: test2
character(2) :: name
type(test1) :: t1
contains
procedure, private :: test2_writef
generic :: write(formatted) => test2_writef
end type test2
contains
subroutine test1_writef(self, unit, iotype, v_list, iostat, iomsg)
class(test1), intent(in) :: self ! Object to write.
integer, intent(in) :: unit ! Internal unit to write to.
character(*), intent(in) :: iotype ! LISTDIRECTED or DTxxx
integer, intent(in) :: v_list(:) ! parameters from fmt spec.
integer, intent(out) :: iostat ! non zero on error, etc.
character(*), intent(inout) :: iomsg ! define if iostat non zero.
write (unit, "(a)", IOSTAT=iostat, IOMSG=iomsg) self%name
end subroutine test1_writef
subroutine test2_writef(self, unit, iotype, v_list, iostat, iomsg)
class(test2), intent(in) :: self ! Object to write.
integer, intent(in) :: unit ! Internal unit to write to.
character(*), intent(in) :: iotype ! LISTDIRECTED or DTxxx
integer, intent(in) :: v_list(:) ! parameters from fmt spec.
integer, intent(out) :: iostat ! non zero on error, etc.
character(*), intent(inout) :: iomsg ! define if iostat non zero.
write (unit, "(a, ' <', a, '>')", IOSTAT=iostat, IOMSG=iomsg) self%name, self%t1
end subroutine test2_writef
end module test_mod
运行此程序我希望获得:
Test1: t1
Test2: t2 <t1>
但与gfortran相反,我获得了:
Test1: t1
Test2: t2 <>
“t1”字符串未写入屏幕。
我正在使用此版本的gfortran:
[egissi@shibax ~]$ gfortran --version
GNU Fortran (GCC) 7.3.1 20180303 (Red Hat 7.3.1-5)
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
我知道我可以用self%t1
替换self%t1%name
,但我的类型要复杂得多,我最好不要在其他派生类型中重复相同的格式。
我错过了什么?我怎样才能获得这种行为?
答案 0 :(得分:3)
对于要使用的已定义输出过程,必须以某种方式“选择”它。在列表导向的输出
中print *, 'Test1:', t1
print *, 'Test2:', t2
有效项test1_writef
和test2_writef
可以使用t1
和t2
这两个程序。因此使用它们。
但是,对于子输出
write (unit, "(a, ' <', a, '>')", IOSTAT=iostat, IOMSG=iomsg) self%name, self%t1
我们现在有一个明确的格式("(a,' <',a,'>')"
)。此处,有效项self%name
和self%t1
被明确编辑为字符。要请求根据self%t1
处理对象test1_writef
,必须明确使用dt
编辑描述符:
write (unit, "(a, ' <', dt, '>')", IOSTAT=iostat, IOMSG=iomsg) self%name, self%t1