在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的NewTicker()函数用于输出包含通道的新的股票代码,以便以duration参数指定的周期发送时间。在设置时间间隔或滴答器的滴答声方面很有帮助,以弥补速度较慢的收件人。在此,持续时间‘d’必须大于零,否则会发生紧急错误。然后,您可以使用Stop()方法终止股票行情收录器,以释放相关资源。此外,此函数在时间包下定义。在这里,您需要导入“time”包才能使用这些函数。
用法:
func NewTicker(d Duration) *Ticker
在这里,“d”是持续时间,* Ticker是指向股票代号的指针。在这里,股票代号用于保持一个通道,该通道每隔一段时间提供时钟的“滴答声”。
返回值:它返回一个包含通道的新股票行情指示器。
范例1:
// Golang program to illustrate the usage of
// time.NewTicker() function
// Including main package
package main
// Importing fmt and time
import "fmt"
import "time"
// Calling main
func main() {
// Calling NewTicker method
d:= time.NewTicker(2 * time.Second)
// Creating channel using make
// keyword
mychannel:= make(chan bool)
// Calling Sleep() methpod in go
// function
go func() {
time.Sleep(7 * time.Second)
// Setting the value of channel
mychannel <- true
}()
// Using for loop
for {
// Select statement
select {
// Case statement
case <-mychannel:
fmt.Println("Completed!")
return
// Case to print current time
case tm := <-d.C:
fmt.Println("The Current time is:", tm)
}
}
}
输出:
The Current time is: 2020-04-08 14:54:20.143952489 +0000 UTC m=+2.000223531 The Current time is: 2020-04-08 14:54:22.143940032 +0000 UTC m=+4.000211079 The Current time is: 2020-04-08 14:54:24.143938623 +0000 UTC m=+6.000209686 Completed!
此处,使用for循环来打印当前时间,直到循环停止为止,并且此时间在代码中指定的“tick”之后的规则间隔之后打印。这是2秒。因此,在2秒的常规间隔后,当前时间会显示在上方。在这里,股票代码必须在三次之后停止,因为限制为7秒,并且在第三笔代码之后仅剩1秒。
相关用法
- Golang math.Lgamma()用法及代码示例
- Golang math.Float64bits()用法及代码示例
- Golang atomic.AddInt64()用法及代码示例
- Golang atomic.StoreInt64()用法及代码示例
- Golang reflect.FieldByIndex()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang bits.Sub()用法及代码示例
- Golang io.PipeWriter.CloseWithError()用法及代码示例
- Golang time.Round()用法及代码示例
- Golang reflect.AppendSlice()用法及代码示例
- Golang reflect.ChanOf()用法及代码示例
- Golang flag.Bool()用法及代码示例
- Golang time.Sleep()用法及代码示例
- Golang time.Time.Year()用法及代码示例
- Golang reflect.DeepEqual()用法及代码示例
- Golang reflect.Indirect()用法及代码示例
- Golang reflect.CanAddr()用法及代码示例
- Golang reflect.CanInterface()用法及代码示例
- Golang reflect.CanSet()用法及代码示例
- Golang reflect.Cap()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 time.NewTicker() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。