访问复杂的组件

复杂的实体

complex, parameter::x = (1., 4.)

有真实的部分 1. 和复杂的部分 4.。我们可以访问这些单独的组件

real(x)  ! The real component
aimag(x) ! The complex component
x%re     ! The real component
y%im     ! The complex component

x%.. 表单是 Fortran 2008 的新增功能,并未在编译器中得到广泛支持。然而,该形式可用于直接设置复变量的各个分量

complex y
y%re = 0.
y%im = 1.