- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想扩展一个抽象类型然后用构造函数初始化但是我得到了错误(来自 gfortran)“错误:结构构造函数中没有给出组件‘功能’的初始值设定项!” 第一个模块是
module A_Module
implicit none
type A
double precision :: x,y
end type A
contains
end module A_Module
第二个模块是
module B_module
use A_Module
type, abstract :: B
contains
procedure (Compute_BFeature), deferred :: B_Feat
end type B
abstract interface
function Compute_BFeature(this)
import B
double precision, dimension(:), allocatable :: Compute_BFeature
class (B)::this
end function Compute_BFeature
end interface
type, extends(B) :: B_new
type (A), dimension(2) :: A_list
double precision, dimension(2) :: Feature
contains
procedure :: B_Feat => B_new_Feature
end type B_new
interface B_new
procedure B_new_Constructor
end interface
contains
function B_new_Constructor(this,A_listInput)
type(B_new):: B_new_Constructor
type (A), dimension(2), intent(in) :: A_listInput
B_new_Constructor%A_list = A_listInput
B_new_Constructor%Feature = B_new_Constructor%B_Feat()
end function
function B_new_Feature (this)
double precision, dimension(:) , allocatable :: B_new_Feature
class (B_new) :: this
allocate(B_new_Feature(2))
B_new_Feature(1) = -(this%A_list(2)%y - this%A_list(1)%y)
B_new_Feature(2) = this%A_list(2)%x - this%A_list(1)%x
end function
end module B_module
代替
B_new_Constructor%Feature = B_new_Constructor%B_Feat()
我也试过用
B_new_Constructor%Feature(1) = 1.0
B_new_Constructor%Feature(2) = 1.0
但 gfortran 总是返回相同的错误。为了了解问题是否出在我的 B_new_Feature 函数上我试图查看错误是否与函数的可分配语句有关,但是,即使将 Feature 作为 double 标量(并且 B_new_Feature 进行了相应调整),编译器仍然以相同的方式提示。此刻经过多次尝试,我找不到错误是什么,知道吗?
最佳答案
(因为我对 Fortran OOP 特性还是新手,以下答案可能包含一些大错误,所以请小心......使用 gfortran4.8.2 测试)
首先在 B_new_Constructor()
中,this
作为第一个参数给出但没有明确声明(可能是错字)。因为没有implicit none
,所以这个隐式this
不会出错。另外,据我所知,Fortran 的“构造函数”不是派生类型的成员函数,而是通常指的是一个模块过程,它被默认结构构造函数重载以返回一个新对象。因此,无需将 this
传递给用户定义的构造函数(此处为 B_new_Constructor()
),而是返回一个新构造的对象。
有了原代码,主程序是这样的
program main
use B_module, only: A, B_new
type(B_new) :: p, q, r
p = B_new()
print *, "p = ", p
q = B_new( [ A(1.0d0,2.0d0), A(3.0d0,4.0d0) ] )
print *, "q = ", q
r = B_new( [ A(1.0d0,2.0d0), A(3.0d0,4.0d0) ], [ 5.0d0, 6.0d0 ] )
print *, "r = ", r
end
给出类似的错误信息
p = B_new()
1
Error: No initializer for component 'a_list' given in the structure constructor at (1)!
q = B_new( [ A(1.0d0,2.0d0), A(3.0d0,4.0d0) ] )
1
Error: No initializer for component 'feature' given in the structure constructor at (1)!
现在,如果我们在 B_module
的顶部附加 implicit none
并将 B_new_Constructor()
更改为
function B_new_Constructor( A_listInput ) result( ret )
type(A) :: A_listInput( 2 )
type(B_new) :: ret
print *, "modified constructor called (no optional)"
ret% A_list(:) = A_listInput(:)
ret% Feature(:) = ret% B_Feat()
endfunction
对于 p
p = B_new()
1
Error: No initializer for component 'a_list' given in the structure constructor at (1)!
这可能是因为不带参数的调用没有匹配过程(这里我们假设默认结构构造函数需要两个参数)。处理此问题的一种方法可能是使用 optional
关键字,例如
function B_new_Constructor( A_listInput , featInput ) result( ret )
type(A), optional :: A_listInput( 2 )
double precision, optional :: featInput( 2 )
type(B_new) :: ret
print *, "modified constructor called"
if ( present( A_listInput ) ) ret% A_list(:) = A_listInput(:)
if ( present( featInput ) ) then
ret% Feature(:) = featInput(:)
else
ret% Feature(:) = ret% B_Feat()
endif
endfunction
然后程序运行为
modified constructor called
p = 1.24543954074099760E-312 1.24546058728534379E-312 1.24543953672918456E-312 2.12199579096527232E-314 1.22424062937569107E-312 -4.01181304423092194E-321
modified constructor called
q = 1.0 2.0 3.0 4.0 -2.0 2.0 !! format slightly changed to fit the terminal
modified constructor called
r = 1.0 2.0 3.0 4.0 5.0 6.0
此输出显示给定两个参数,用户定义的构造函数优先于默认结构构造函数。
为了避免optional
关键字,我们还可以使用默认初始化器,这样
type A
double precision :: x = 100.0d0, y = 200.0d0
endtype
type, extends(B) :: B_new
type(A) :: A_list(2)
double precision :: Feature(2) = [ 300.0d0, 400.0d0 ]
contains
...
endtype
然后 B_new_Constructor()
的第一个修改版本(没有 optional
)也能正常工作
p = 100.0 200.0 100.0 200.0 300.0 400.0
modified constructor called (no optional)
q = 1.0 2.0 3.0 4.0 -2.0 2.0
r = 1.0 2.0 3.0 4.0 5.0 6.0
此输出表明至少为 r
调用了默认结构构造函数。
编辑:如果我们只想允许单参数构造函数(此处为 A_listInput
),可能有两种方法。一种是用两个可选参数修改上面的 B_new_Constructor()
,包括以下内容以禁止其他情况:
if ( ( present( A_listInput ) .and. present( featInput ) ) .or. &
( (.not. present( A_listInput )) .and. (.not. present( featInput )) ) ) then
stop "only one arg permitted"
endif
另一种方法是将没有参数或两个参数的构造函数定义为“虚拟”:
function B_new_Constructor_arg1 ( A_listInput ) result( ret )
type(A) :: A_listInput( 2 )
type(B_new) :: ret
ret% A_list(:) = A_listInput(:)
ret% Feature(:) = ret% B_Feat()
endfunction
function B_new_Constructor_arg0 () result( ret )
type(B_new) :: ret
stop "constructor with no argument prohibited"
endfunction
function B_new_Constructor_arg2 ( A_listInput, featInput ) result( ret )
type(A) :: A_listInput( 2 )
double precision :: featInput( 2 )
type(B_new) :: ret
stop "constructor with two arguments prohibited"
endfunction
与
interface B_new
procedure B_new_Constructor_arg1
procedure B_new_Constructor_arg0 !! this masks default initializers (if any)
procedure B_new_Constructor_arg2 !! this masks default structure constructor
endinterface
这两种方法似乎都有效,但都不是很优雅......(希望有更好的方法来做到这一点)。 [很抱歉,我的回答太长了。]
关于oop - Fortran 构造函数出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31036638/
是的,我知道..,这不是想象的...这是一个真正的 Fortran 问题。 以前的版本是指 Fortran 2003、95、90,甚至 77。 我所说的“向后兼容”是指可以轻松运行为 2008 年以前
我有一个程序,它的变量中有一个值。一旦确定了该值,我想调用另一个程序并使用该变量的值来确定在新程序中的位置。有人知道该怎么做吗? 最佳答案 如果您有 Fortran 2008 编译器,您将拥有标准子例
namelist 是一种有用的 fortran 结构,可以从文件中快速初始化变量。 namelist 有一个名称并包含一组具有已知类型的变量。这使得它类似于 type 结构。 通常情况下,给程序或子例
我正在遍历索引,我正在检查我是否不在第一个循环交互和另一个条件中。如果第一个条件是 .False.,我不想评估第二个条件。 do i = 1, n if ( i /= 1 .and. var(
Fortran 2003 具有用于数组连接的方括号语法,Intel fortran 编译器也支持它。我在这里为矩阵连接写了一个简单的代码: program matrix implicit none r
我正在尝试通过重载类型名称来制作自定义数据类型构造函数。但是,在进行调用时,将调用默认构造函数。我不明白我做错了什么。 这是有问题的代码片段。 module test type, pu
我的最终目标是在 Fortran 中有一个通用的映射函数,即一个接受任意类型 A 的数组和一个 A->B 类型的函数的函数,将此函数应用于给定数组的所有元素并返回一个B 类型的数组。我无法用数组实现它
我正在学习 Fortran,在使用格式编写时发现了一些奇怪的东西(我使用的是 Fortran onlinegdb) Program Hello real, dimension(3,2):: array
Fortran 中的INTERFACE 语句是否使其成为正式实现multiple dispatch 的编程语言? ? (我问是因为所链接的维基百科文章在其看似全面的支持相关范式的示例编程语言列表中并未
我可以使用 Fortran 95 编译器编译 Fortran 90 文件吗? Fortran 95 似乎有很多,但 Fortran 90 没有。 最佳答案 这个可以: NAGWare f95 Comp
嗨,我在 Fortran 中对二维离散化问题强加边界条件时遇到了麻烦。我的离散化网格是一个二维正方形,在 x,y 方向上从 -L 到 L。 我想强加这样的边界条件, 在 x=L 的边界线上,指定了函数
Fortran 是否有与 C assert 等效的标准函数/关键字? ? 我找不到 assert我在Fortran2003标准中提到过。我发现了一些如何使用预处理器的方法,但是在这个 answer建议
我有一系列的作业,使用“;”将它们分配给同一个ike。分开statemnts,但我收到此错误: 1.0;磅(1,9) 1个 错误:(1)处无法分类的陈述 在文件LJ.F90:223中 如果每个语句都在
我正在使用 gfortran -std=f2008。我有一个函数,它返回一个包含可分配数组的派生类型。该函数在返回之前调用allocate()。似乎在分配数组的函数返回之后,数组会自动释放一段时间,并
我制作了这个小型测试程序来“证明”在编译之前(或者如果你让它们可分配),你不能在不指定它们的大小的情况下使用向量。我的观点失败了。我期待本地向量“num”会失败。程序在执行程序之前无法知道它的大小。大
出于优化原因,Fortran 强制子例程或函数的虚拟参数不是别名,即它们不指向相同的内存位置。 我想知道相同的约束是否适用于函数的返回值。 换句话说,对于给定的 myfunc 函数: function
我已经在Fortran 90中编写了一个相当大的程序。它已经运行了一段时间了,但是今天我尝试将其提高一个档次并增加问题的大小(这是研究非标准的有限元求解器,如果那样的话)。可以帮助任何人...)现在,
在 C 和 C++ 中,有许多操作会导致未定义的行为,即允许编译器做任何它想做的事情的情况。 Examples包括在释放变量后使用它,释放变量两次和取消引用空指针。 Fortran 是否也有未定义的行
通常我使用fortran进行数值分析,然后使用matlab、R和python进行后期和前期工作。 我发现 matlab、R 和 python 在终端中提供了命令提示符,以便您可以运行脚本以及从命令行立
在 Fortran 中将变量设置为 +Infinity 的最安全方法是什么?目前我正在使用: program test implicit none print *,infinity() con
我是一名优秀的程序员,十分优秀!