当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang time.Ticker.Stop()用法及代码示例


在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的NewTicker()函数用于禁用股票行情指示器。因此,在调用Stop()方法之后,将不再发送任何引号。并且它不会关闭通道,以防止同时从通道读取go-routine从而查看错误的“tick”。此外,此函数在时间包下定义。在这里,您需要导入“time”包才能使用这些函数。

用法:

func (t *Ticker) Stop()

在这里,“t”是指向股票行情指示器的指针。在这里,股票代号用于保持一个通道,该通道间隔提供时钟的“滴答声”。

返回值:它在调用Stop()方法之前返回指定操作的输出,因为在调用它之后,代码关闭。

例:

// Golang program to illustrate the usage of 
// time.Ticker.Stop() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import "fmt"
import "time"
  
// Calling main 
func main() { 
  
    // Calling NewTicker method 
    Ticker:= time.NewTicker(2 * time.Second) 
  
    // Creating channel using make 
    // keyword 
    mychannel:= make(chan bool) 
  
    // Go function 
    go func() { 
  
        // Using for loop 
        for { 
  
            // Select statement 
            select { 
  
            // Case statement 
            case <-mychannel:
                return
  
            // Case to print current time 
            case tm := <-Ticker.C:
                fmt.Println("The Current time is:", tm) 
            } 
        } 
    }() 
  
    // Calling Sleep() method 
    time.Sleep(7 * time.Second) 
  
    // Calling Stop() method 
    Ticker.Stop() 
  
    // Setting the value of channel 
    mychannel <- true
  
    // Printed when the ticker is turned off 
    fmt.Println("Ticker is turned off!") 
}

输出:

The Current time is: 2020-04-09 07:26:05.374436607 +0000 UTC m=+2.000213251
The Current time is: 2020-04-09 07:26:07.374442201 +0000 UTC m=+4.000218858
The Current time is: 2020-04-09 07:26:09.374511648 +0000 UTC m=+6.000288424
Ticker is turned off!

在这里,首先创建一个股票代号,然后创建一个发送时间的通道。在使用for循环以打印当前时间之后,将调用Ticker.Stop()方法并关闭股票行情指示器。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 time.Ticker.Stop() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。