```go
package main import ( "crypto/md5" "fmt" "io" "os"
) var content = "This is content to check" func main() { checksum := MD5(content) checksum2 :... ...
分类:
其他好文 时间:
2018-03-22 01:46:05
阅读次数:
156
```go package main import ( crypto "crypto/rand" "fmt" "math/big" "math/rand" ) func main() { sec1 := rand.New(rand.NewSource(10)) sec2 := rand.New(ra ...
分类:
其他好文 时间:
2018-03-22 01:44:43
阅读次数:
162
```go package main import ( "fmt" "math/cmplx"
) func main() { // complex numbers are // defined as real and imaginary // part defined by float64 a :=... ...
分类:
其他好文 时间:
2018-03-22 01:43:03
阅读次数:
114
```go package main import ( "fmt" "strconv"
) const bin = "10111"
const hex = "1A"
const oct = "12"
const dec = "10"
const floatNum = 16.123557 func m... ...
分类:
其他好文 时间:
2018-03-22 01:41:07
阅读次数:
164
```go package main import ( "encoding/json" "fmt" "time" ) func main() { eur, err := time.LoadLocation("Europe/Vienna") if err != nil { panic(err) } t ...
分类:
其他好文 时间:
2018-03-22 01:40:33
阅读次数:
156
```go package main import ( "fmt" "time"
) func main() { // Set the epoch from int64 t := time.Unix(0, 0) fmt.Println(t) // Get the epoch // from Time... ...
分类:
其他好文 时间:
2018-03-22 01:38:48
阅读次数:
149
```go
package main import ( "fmt"
) var integer int64 = 32500
var floatNum float64 = 22000.456 func main() { // Common way how to print the decimal //... ...
分类:
其他好文 时间:
2018-03-22 01:36:26
阅读次数:
139
函数是什么? 函数一词来源于数学,但编程中的「函数」概念,与数学中的函数是有很大不同的,具体区别,我们后面会讲,编程中的函数在英文中也有很多不同的叫法。在BASIC中叫做subroutine(子过程或子程序),在Pascal中叫做procedure(过程)和function,在C中只有functio ...
分类:
编程语言 时间:
2018-03-21 21:17:57
阅读次数:
257
方法一 let s = ary.join(",")+","; for(let i=0;i-1) { alert("数组中有重复元素:" + ary[i]); break; } } 方法二 let ary = new Array("111","22","33","111"); let nary=ary... ...
分类:
编程语言 时间:
2018-03-21 17:26:14
阅读次数:
253
php 显示错误方法 set_error_handler(function($errno, $errstr, $errfile, $errline){echo $errno.'<br/>'.$errstr.'<br/>'.$errfile.' line:'.$errline; }); nginx 设 ...
分类:
Web程序 时间:
2018-03-21 14:01:12
阅读次数:
173