gpt4 book ai didi

c# - 对数字文字使用 f 后缀

转载 作者:行者123 更新时间:2023-11-30 14:18:17 24 4
gpt4 key购买 nike

我看到一些这样的代码:

float num2 = ( ( this.X * this.X ) + ( this.Y * this.Y ) ) + ( this.Z * this.Z );
float num = 1f / ( ( float ) Math.Sqrt ( ( double ) num2 ) );
this.X *= num;
this.Y *= num;
this.Z *= num;

这样有关系吗?:

float num2 = ( ( this.X * this.X ) + ( this.Y * this.Y ) ) + ( this.Z * this.Z );
float num = 1 / ( ( float ) Math.Sqrt ( ( double ) num2 ) );
this.X *= num;
this.Y *= num;
this.Z *= num;

对于第 2 行的第二个示例,编译器会使用 (float)/(float) 还是尝试使用 (double)/(float)

编辑:顺便说一句,会有任何性能差异吗?

最佳答案

第二个例子实际上使用了(int)/(float)。由于 Int32 可以隐式转换为 Single,因此编译器不会报错,并且可以正常工作。

话虽如此,如果您这样做,它会提示:

float num = 1.0 / ( ( float ) Math.Sqrt ( ( double ) num2 ) );

这会导致它尝试使用 (double)/(float),这将有效地变成 (double)/(double)。当试图将该 double 值隐式设置为浮点变量时,编译器会报错。


EDIT: Btw would there be any performance difference?

可能无法衡量。也就是说,您将在 IL 中创建额外的转换操作。这些可能会在 JIT 期间被消除 - 但同样,这将是微观的。

就个人而言,我可能会使用 double 学来处理这个问题,因为它会使代码更易于阅读:

double num2 = (this.X * this.X) + (this.Y * this.Y) + (this.Z * this.Z);
float num = (float) (1.0 / Math.Sqrt(num2));
this.X *= num;
// ...

关于c# - 对数字文字使用 f 后缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4741002/

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