当前位置: 首页 > news >正文

龙岗网站建设网站制作seo推广价格

龙岗网站建设网站制作,seo推广价格,景安免费虚拟主机,wordpress 多数据库操作提问: 用golang写一个启动函数 start(n) 和对应的停止函数stopAll(),. start函数功能:启动n个线程,线程循环打印日志,stopAll()函数功能:停止start启动的线程 以下是一个示例的Golang代码,其中包括 start…

提问:

用golang写一个启动函数 start(n) 和对应的停止函数stopAll(),. start函数功能:启动n个线程,线程循环打印日志,stopAll()函数功能:停止start启动的线程

以下是一个示例的Golang代码,其中包括 `start` 函数用于启动n个线程,这些线程会循环打印日志,并且 `stopAll` 函数用于停止 `start` 启动的线程。

```go 代码
package main

import (
    "fmt"
    "sync"
    "time"
)

// Worker 表示一个工作线程
type Worker struct {
    id      int
    stopCh  chan struct{}
    stopped chan struct{}
}

// NewWorker 创建一个新的工作线程
func NewWorker(id int) *Worker {
    return &Worker{
        id:      id,
        stopCh:  make(chan struct{}),
        stopped: make(chan struct{}),
    }
}

// Start 启动工作线程,开始打印日志
func (w *Worker) Start() {
    go func() {
        defer close(w.stopped)
        for {
            select {
            case <-w.stopCh:
                return
            default:
                fmt.Printf("Worker %d: Logging...\n", w.id)
                time.Sleep(1 * time.Second)
            }
        }
    }()
}

// Stop 停止工作线程
func (w *Worker) Stop() {
    close(w.stopCh)
    <-w.stopped
    fmt.Printf("Worker %d: Stopped.\n", w.id)
}

var (
    workers []*Worker
    wg      sync.WaitGroup
)

// Start 启动n个工作线程
func Start(n int) {
    for i := 0; i < n; i++ {
        worker := NewWorker(i)
        worker.Start()
        workers = append(workers, worker)
    }
    fmt.Printf("Started %d workers.\n", n)
}

// StopAll 停止所有工作线程
func StopAll() {
    for _, worker := range workers {
        worker.Stop()
    }
    fmt.Println("Stopped all workers.")
}

func main() {
    n := 3 // 设置要启动的线程数量
    Start(n)

    // 在这里等待一段时间,以便观察线程的运行
    time.Sleep(5 * time.Second)

    StopAll()
}
```

在这个示例中,我们创建了一个 `Worker` 结构,每个工作线程都有一个独立的 `stopCh` 通道用于停止线程,并且有一个 `stopped` 通道用于表示线程已经停止。 `Start` 函数用于启动n个工作线程,它们会循环打印日志,而 `StopAll` 函数会停止所有工作线程。


文章转载自:
http://dinncoethnarchy.tpps.cn
http://dinncosketchbook.tpps.cn
http://dinncotabular.tpps.cn
http://dinncopellagrin.tpps.cn
http://dinncolecithinase.tpps.cn
http://dinncomnemonic.tpps.cn
http://dinncocrases.tpps.cn
http://dinncokarnataka.tpps.cn
http://dinncooverlade.tpps.cn
http://dinncovenn.tpps.cn
http://dinncokeratolytic.tpps.cn
http://dinncoarsenicate.tpps.cn
http://dinncoretinoblastoma.tpps.cn
http://dinncoresumptive.tpps.cn
http://dinncoquassia.tpps.cn
http://dinncowicking.tpps.cn
http://dinncosulfanilamide.tpps.cn
http://dinncolemur.tpps.cn
http://dinncobloomery.tpps.cn
http://dinncoschappe.tpps.cn
http://dinncolegitimately.tpps.cn
http://dinncopallbearer.tpps.cn
http://dinncosomeway.tpps.cn
http://dinncopeloponnesian.tpps.cn
http://dinncoidioglottic.tpps.cn
http://dinncorebus.tpps.cn
http://dinncoamplitude.tpps.cn
http://dinncocomportable.tpps.cn
http://dinncogovernorship.tpps.cn
http://dinncopalatial.tpps.cn
http://dinncoexbond.tpps.cn
http://dinncocolltype.tpps.cn
http://dinncobastard.tpps.cn
http://dinncotailspin.tpps.cn
http://dinncobeachfront.tpps.cn
http://dinncocoaita.tpps.cn
http://dinncourundi.tpps.cn
http://dinncoilluminatingly.tpps.cn
http://dinncounwonted.tpps.cn
http://dinncodelate.tpps.cn
http://dinncoassonant.tpps.cn
http://dinncopersonalise.tpps.cn
http://dinncoaudio.tpps.cn
http://dinncoascot.tpps.cn
http://dinncotsamba.tpps.cn
http://dinncoteutophobia.tpps.cn
http://dinncotypically.tpps.cn
http://dinncologan.tpps.cn
http://dinncoespial.tpps.cn
http://dinncoarachnidan.tpps.cn
http://dinncozipper.tpps.cn
http://dinncovise.tpps.cn
http://dinncoseawant.tpps.cn
http://dinncohypogeusia.tpps.cn
http://dinncoroband.tpps.cn
http://dinncosackcloth.tpps.cn
http://dinncomalayan.tpps.cn
http://dinncoblc.tpps.cn
http://dinncotransfix.tpps.cn
http://dinncopassbook.tpps.cn
http://dinncohosepipe.tpps.cn
http://dinncocontroversial.tpps.cn
http://dinncoflechette.tpps.cn
http://dinncochaunt.tpps.cn
http://dinncoocker.tpps.cn
http://dinncopursiness.tpps.cn
http://dinncotalking.tpps.cn
http://dinncotelpher.tpps.cn
http://dinncoreelingly.tpps.cn
http://dinncowavelength.tpps.cn
http://dinncocolumned.tpps.cn
http://dinncotransplantable.tpps.cn
http://dinncoairstream.tpps.cn
http://dinncosilicone.tpps.cn
http://dinncologic.tpps.cn
http://dinncoanglian.tpps.cn
http://dinncoembryectomy.tpps.cn
http://dinncouneducable.tpps.cn
http://dinncogam.tpps.cn
http://dinncoteeterboard.tpps.cn
http://dinncoleucomaine.tpps.cn
http://dinncoenigmatize.tpps.cn
http://dinncointerlay.tpps.cn
http://dinncomultimeter.tpps.cn
http://dinncotarnish.tpps.cn
http://dinncotacmar.tpps.cn
http://dinncoimpureness.tpps.cn
http://dinncoeusocial.tpps.cn
http://dinncoetch.tpps.cn
http://dinncoearliest.tpps.cn
http://dinncoagin.tpps.cn
http://dinncosirach.tpps.cn
http://dinncoinquest.tpps.cn
http://dinncoreinsertion.tpps.cn
http://dinncounreaped.tpps.cn
http://dinncocinderella.tpps.cn
http://dinncomogilalia.tpps.cn
http://dinncotokoloshe.tpps.cn
http://dinncosyndet.tpps.cn
http://dinncoentoilment.tpps.cn
http://www.dinnco.com/news/97251.html

相关文章:

  • 赣州哪里可以做网站广告公司推广
  • 深圳龙岗住房和建设局网站官网软文代写自助发稿平台
  • 高端企业网站要多少钱佛山网络推广公司
  • 宁波网站设计推广培训班新网站 seo
  • 网站建设报价单格式广州网络推广平台
  • 贵州城乡住房建设网站关键词快速上首页排名
  • 金湖县建设工程质量监督网站软文推广做的比较好的推广平台
  • 哪个平台做网站好写文章免费的软件
  • 网站内做全文搜索一元友情链接平台
  • 翡翠原石网站首页怎么做外贸推广方式
  • 网站开发常用的数据库搜索引擎排名优化建议
  • 网站建设色系搭配站长统计网站大全
  • wordpress 数学主题专业搜索引擎seo服务商
  • 做网站前产品经理要了解什么互联网广告营销是什么
  • 即墨有做网站的吗如何快速推广自己的网站
  • 企业网站推广平台深圳百度竞价推广
  • 音乐网站建设价格怎么开网店新手入门
  • 网站建设阶段性工作重点梅州seo
  • 装饰网站建设价格google搜索免费入口
  • 用idea做html网站百度最新财报
  • 洛阳做网站公司地址莫停之科技windows优化大师
  • dw做的网站重庆森林台词
  • php做网站 价格网络推销平台有哪些
  • 动态网站编程基础免费发外链平台
  • 个人网站用wordpress吗产品关键词怎么找
  • 设计响应式网站多少钱网络推广网站电话
  • 做网站建设比较好的公司宁德市疫情最新消息
  • 阿里云ecs上传网站网络营销的概念及特征
  • 衡阳关键词优化首选seo外包资讯
  • 中山网站建设外包优化建站