gpt4 book ai didi

fortran - 以种类参数作为子例程参数的参数化派生类型

转载 作者:行者123 更新时间:2023-12-04 13:21:42 27 4
gpt4 key购买 nike

假设我们有以下代码:

module foo
use :: iso_fortran_env
implicit none

type :: bar (p, q)
integer, kind :: p
integer, len :: q
integer(kind = p), dimension(q) :: x
end type bar

contains

subroutine barsub (this)
class(bar(*,*)), intent(in) :: this
write (*,*) this%x
end subroutine barsub

end module foo

此代码无法使用 gfortran 8 或 pgfort 18.4 进行编译。 pgi 编译器说

Illegal selector - KIND value must be non-negative Assumed type parameter (*) cannot be used with non-length type parameter p

而 gfortran 产量

The KIND parameter 'p' at (1) cannot either be ASSUMED or DEFERRED

如果我将上面的代码更改为

subroutine barsub (this)
class(bar(INT32,*)), intent(in) :: this
write (*,*) this%x
end subroutine barsub

它在两个编译器上都能正常编译。

是否可以编写一个不需要明确指定 kind 参数的子程序?在上面的示例中,INT32INT64 的代码是相同的,...我不想为每个可以想象到的值复制粘贴它范围。它适用于 len 参数。为什么我不能对 kind 参数做同样的事情?

最佳答案

Is it possible to write a subroutine where the kind parameter does not need to be specified explicitly?

不,kind 类型参数需要由常量表达式给出或默认,参见例如 Fortran 2008 标准,定义 1.3.147.12.3。

Why can't I do the same with the kind parameter?

事实上 lenkind 类型参数有不同的用途和要求,这就是拥有两种类型参数的意义所在,如果它们的特性相同,我们就不会不需要两个。

请注意,过程需要它们的参数化派生类型的虚拟参数的 kind 参数,就像它们需要它们的内部类型的虚拟参数的 kind 参数一样:到在编译时定义它们的值。

关于fortran - 以种类参数作为子例程参数的参数化派生类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51131833/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com