Golang using time as a seed to generate random numbers

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.

If you run a random number rand. INTN (n) This function will find that the random number generated each time is the same.

Like what:

I: = 0
For i<10 {
i++
Fmt. Println (time. Now (), Math. Pi,rand. INTN (3))

}

This code runs two times, and the resulting sequence is the same. In order to produce a "real" random number, time can be used as the base.

Use the following method.

Package Main

Import (
"FMT"
"Time"
"Math/rand"
)

Func Main () {

Fmt. Println (time. Now (). Unixnano ())
r: = Rand. New (Rand. Newsource (time. Now (). Unixnano ()))
For i:=0; i<10; i++ {
Fmt. Println (R.INTN (100))
}
}
The code snippet is from: http://www.sharejs.com/codes/go/8974

The above Unixnano returns the Int64, so that R is assigned a time-based random number generator, andr.intn (100) produces a random number.

The Apis:https://gowalker.org/index

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.