gpt4 book ai didi

C: 在 中声明类型

转载 作者:太空宇宙 更新时间:2023-11-04 00:46:19 25 4
gpt4 key购买 nike

我有一个使用复数的代码。

当我声明变量“x”时,它是一个大小为 double 的复数,我应该将其声明为:

complex double x;

double complex x;

?
这有什么区别吗?有没有人有编译器的经验不明白他们中的任何一个?

最佳答案

C 标准在 6.7.2 类型说明符中说

Each list of type specifiers shall be one of the following sets [...] the type specifiers may occur in any order

  • ...
  • float _Complex
  • double _Complex
  • long double _Complex

尽管标准始终将 _Complex(因此 complex)放在 double、float 和 long double 之后,但它允许任何顺序

#include <complex.h>

int main(void)
{
long double complex d1;
double long complex d2;
complex long double d3;
complex double long d4;
double complex long d5;
long complex double d6;
}

演示:http://coliru.stacked-crooked.com/a/5cbc966b0c1b096e

关于C: 在 <complex.h> 中声明类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37639200/

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