实话实说,我不知道其他语言还有哪个有复数类型,据我所知JavaScript、Java、VB中都没有。
下面简单介绍一下Go语言中的复数-complex。
complex分两种: 1. complex64,以float32分别表示复数的实部(real),虚部(imag) 2. complex128,则以float64分别表示
三个函数:complex,real,imag
使用如下:
a: = complex(3,1) //a: 3+1i
ar := real(a) //3
ai := imag(a) //1
The Original Link: http://baham.github.io/11_26_goyu-yan-fu-shu-complex.html
If you want to reprint it, please do under the CC BY-NC-SA 4.0