Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
764 views
in Technique[技术] by (71.8m points)

objective c - What describes NSNumberFormatter -maximumSignificantDigits?

There's no text in the documentation about what that means, but it sounds very important to understand in order to not run into trouble. Does someone know what that is all about the "significant digits" of a number?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Although the other answer on this question links to a correct explanation of the concept of significant digits in general, NSNumberFormatter's {uses|minimum|maximum}SignificantDigits properties have nothing to do with precision of calculations.

The significant digits are the group of digits in a number from the first nonzero digit to the last nonzero digit, inclusive, usually unless trailing zeroes are fractional. Restricting output to a specific number of significant digits is useful if a relative (percentage) error is known or desired.

First of all, the minimumSignificantDigits and maximumSignificantDigits have no effect unless usesSignificantDigits is set to YES. If this is the case, their effect is probably most easily explained using examples.

Let's take the numbers a = 123.4567, b = 1.23, and c = 0.00123:

Assuming minimumSignificantDigits = 0, 1 or 2:

If maximumSignificantDigits = 3, then a will be formatted as "123", b as "1.23", and c as "0.00123".

If maximumSignificantDigits = 4, then a will be formatted as "123​.5", b as "1.23" and c as "0.00123".

If maximumSignificantDigits = 2, then a will be formatted as "12​0", b as "1.2" and c as "0.0012".

Assuming minimumSignificantDigits = 4:

If maximumSignificantDigits = 4, then a will be formatted as "123.​5", b as "1.23​0", and c as "0.00123​0".

Note: The 45 conversions occur due to the round-to-nearest mode, as the digit following the 4 in a is 5.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...