Qt(C)中的小数类型

前端之家收集整理的这篇文章主要介绍了Qt(C)中的小数类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Qt开发中使用的正确类型是什么(或通常为C),用于十进制算术,即.Net中的System.Decimal结构体的等价物?

Qt是否提供了一个内置的结构? (我在文档中找不到,但也许不知道在哪里看.)
>有没有一个“标准”C库使用?

解决方法

What is the correct type to use in Qt
development (or C++ in general) for
decimal arithmetic,i.e. the
equivalent of System.Decimal struct in
.Net?

C标准库和Qt都不具有与.NET中System.Decimal相同的数据类型.

Does Qt provide a built-in struct? (I
can’t find it in the docs,but maybe
don’t know where to look.)

没有.

Is there a “standard” C++ library to
use?

没有.

但是你可能想看看GNU Multiple Precision Arithmetic Library.

[编辑:]比上述库更好的选择可能是qdecimal.它包含符合IEEE标准的十进制浮点数,这与非常相似(但不完全相同)的.NET十进制数,以及利用Qt习语和惯例.

原文链接:https://www.f2er.com/c/110361.html

猜你在找的C&C++相关文章