big

command
v0.0.0-...-10ffd4c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 23, 2020 License: MIT Imports: 2 Imported by: 0

README

math/big

int 和 float 的范围有限, float 数还因为其 IEEE754 标准,存在精度问题。 为了实现任意精简的数字运算, Go 提供了 math/big 标准库。代价就是更大的内存和更慢的运行速度。

关于 math/big 库的完整说明,可以参考 https://golang.org/pkg/math/big/

运算方式

math/big 库中使用方法提供运算,返回值同时也会保存在 receiver 当中。

d := c.Add(1,2) // c = d = 3
package main

import (
    "fmt"
    "math/big"
)

func main() {
    a := big.NewInt(1)
    b := big.NewInt(2)
    c := big.NewInt(4)
    d := big.NewInt(8)

    d.Add(a, b).Mul(d, c)
    fmt.Println(d)

    d = c.Add(a, b)
    fmt.Println(c, d)
}

/* Output:
12
3 3
*/

在 Go playground 运行

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL