我正在使用NSDecimal,因为我必须为我的应用程序存储非常大的值。我希望能够使用NSDecimalDivide函数来划分两个NSDecimals并将结果四舍五入到最接近的整数。
NSDecimal testOne = [[NSDecimalNumber decimalNumberWithString:@"1064"] decimalValue];
NSDecimal cost = [[NSDecimalNumber decimalNumberWithString:@"10"]decimalValue];
NSDecimal value;
NSDecimalDivide(&value, &testOne, &cost, NSRoundDown);
NSString *string = NSDecimalString(&value, _usLocale);
NSLog(@"Here is the cost%@",string);
这个输出106.4我希望它输出106.有谁知道如何将NSDecimal数字舍入为整数值?
答案 0 :(得分:4)
将NSDecimal包装为NSDecimalNumber并使用decimalNumberByRoundingAccordingToBehavior:
。这使您可以指定所需的精确舍入behavior。
答案 1 :(得分:3)
一种可能的方法是使用NSDecimalNumberHandler
并将scale
设置为0
。
NSDecimalNumber *number1 = [NSDecimalNumber decimalNumberWithString:@"1064"];
NSDecimalNumber *number2 = [NSDecimalNumber decimalNumberWithString:@"10"];
NSDecimalNumberHandler *behavior = [[NSDecimalNumberHandler alloc] initWithRoundingMode:NSRoundDown
scale:0
raiseOnExactness:NO
raiseOnOverflow:NO
raiseOnUnderflow:NO
raiseOnDivideByZero:YES];
NSDecimalNumber *result = [number1 decimalNumberByDividingBy:number2 withBehavior:behavior];
NSLog(@"Here is the cost %@", result);
请注意,我根本没有使用原始NSDecimal
,我会建议你这样做。
但是,如果您想直接使用NSDecimal
,可以使用方便的NSDecimalRound
功能。