在 iOS 中存储和执行大量操作 [英] Store and perform operations with huge numbers in iOS

查看:20
本文介绍了在 iOS 中存储和执行大量操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何处理具有以下数字的操作:48534588306961133067968196965257961415756656521818848750723547477673457670019632882524164647651492025728980571833579341743986

到目前为止,我尝试过的任何方法都没有... unsigned long、long long 等...

解决方案

你可以改用 JKBigInteger,它是 LibTomMath C 库的 Objective-C 包装器.而且非常易于使用和理解.

在你的情况下:

 <代码> JKBigInteger * INT = [[JKBigInteger的alloc] initWithString:@ 48534588306961133067968196965257961415756656521818848750723547477673457670019632882524164647651492025728980571833579341743988603191694784406703"];

How could I handle operations with a number like: 48534588306961133067968196965257961415756656521818848750723547477673457670019632882524164647651492025728980571833579341743988603191694784406703

Nothing that I've tried worked so far... unsigned long, long long, etc...

解决方案

You could use JKBigInteger instead, it is a Objective-C wrapper around LibTomMath C library. And really easy to use and understand.

In your case:

JKBigInteger *int = [[JKBigInteger alloc] initWithString:@"48534588306961133067968196965257961415756656521818848750723547477673457670019632882524164647651492025728980571833579341743988603191694784406703"];

这篇关于在 iOS 中存储和执行大量操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆