Hallo Welt mit allen Funktionen der Go-Sprache

Ich werde die Hello-Welt, die zuvor getwittert wurde, mit allen Funktionen der Go-Sprache als Qiita-Artikel verlassen.

Es implementiert nur das einfache Ziel, "Hello # number world" parallel zu den Goroutine-Nummern 0-99 anzuzeigen. Es ist jedoch interessant, da Code erforderlich ist, der unerwartet in die Mitte der Go-Sprache gelangt.

Wenn Sie den Kanal nicht verwenden, endet er in der Mitte, und wenn Sie das Argument nicht ordnungsgemäß an goroutine übergeben, überlappen sich die Zahlen. Als ich getwittert habe, habe ich mich nicht mit diesen Dingen befasst, also habe ich versucht, es ernsthaft zu machen, um es diesmal zu einem Artikel zu machen, und festgestellt, dass es in der Mitte oder etwas Seltsames endete. Lol

Quelle

package main

import "fmt"

func main() {
	max := 100
	quit := make(chan bool, max)
    for i := 0; i < max; i++ {
        go func(j int) {
			fmt.Printf("hello, #%v world\n", j)
			quit <- true
		}(i)
	}
	for i := 0; i < max; i++ {
		<- quit
	}
}

Ausführungsergebnis

Hello, #4 world
hello, #0 world
hello, #1 world
hello, #14 world
hello, #16 world
hello, #15 world
hello, #20 world
hello, #9 world
hello, #5 world
hello, #3 world
hello, #6 world
hello, #17 world
hello, #21 world
hello, #18 world
hello, #12 world
hello, #7 world
hello, #11 world
hello, #10 world
hello, #23 world
hello, #19 world
hello, #2 world
hello, #22 world
hello, #24 world
hello, #8 world
hello, #25 world
hello, #63 world
hello, #27 world
hello, #59 world
hello, #28 world
hello, #60 world
hello, #66 world
hello, #99 world
hello, #67 world
hello, #62 world
hello, #68 world
hello, #44 world
hello, #85 world
hello, #87 world
hello, #58 world
hello, #33 world
hello, #72 world
hello, #39 world
hello, #45 world
hello, #41 world
hello, #74 world
hello, #90 world
hello, #36 world
hello, #46 world
hello, #91 world
hello, #47 world
hello, #26 world
hello, #55 world
hello, #71 world
hello, #97 world
hello, #57 world
hello, #75 world
hello, #76 world
hello, #37 world
hello, #92 world
hello, #43 world
hello, #13 world
hello, #61 world
hello, #65 world
hello, #32 world
hello, #38 world
hello, #31 world
hello, #54 world
hello, #98 world
hello, #48 world
hello, #94 world
hello, #49 world
hello, #77 world
hello, #95 world
hello, #89 world
hello, #93 world
hello, #51 world
hello, #56 world
hello, #70 world
hello, #88 world
hello, #73 world
hello, #34 world
hello, #35 world
hello, #52 world
hello, #42 world
hello, #79 world
hello, #82 world
hello, #53 world
hello, #64 world
hello, #83 world
hello, #78 world
hello, #96 world
hello, #80 world
hello, #86 world
hello, #30 world
hello, #40 world
hello, #29 world
hello, #69 world
hello, #84 world
hello, #81 world
hello, #50 world

Recommended Posts

Hallo Welt mit allen Funktionen der Go-Sprache
Funktionen der Go-Sprache
Hallo Welt in GO-Sprache
Hallo Welt mit gRPC / go in Docker-Umgebung
Hallo Welt mit ctypes
Hallo, Welt mit Docker
Hallo Welt auf Flasche
Zeichne Hallo Welt mit mod_wsgi
Hallo Welt mit Flask + Hamlish
Vollbit-Suche mit Go
Bis hallo Welt mit Zappa
Python beginnend mit Hallo Welt!
Hallo Welt! Mit virtueller CAN-Kommunikation
[Hinweis] Hallo Weltausgabe mit Python
10 Funktionen von "Sprache mit Batterie" Python
Hallo Welt! Von QPython mit Braincrash
Hallo Welt- und Gesichtserkennung mit opencv-python 4.2
Hallo Welt mit Raspberry Pi + Minecraft Pi Edition
Snippet-Zusammenfassung bei der Entwicklung mit Go
Hallo Welt
Hallo Welt nicht localhost in Django
Hallo Welt! Von QPython mit Brainfu * k
Ich habe Hello World mit 64-Bit-OS + C-Sprache ohne Verwendung einer Bibliothek ausprobiert
Beim Versuch, Hello World in der Sprache Go auszuführen, ist eine Fehlermeldung aufgetreten
Hallo Welt- und Gesichtserkennung mit OpenCV 4.3 + Python
Twittern Sie regelmäßig mit der Twitter-API in Go-Sprache
Begrüßen Sie die Welt mit Python mit IntelliJ
Hallo Welt mit Nginx + Uwsgi + Python auf EC2
100 Sprachverarbeitung Knock-75 (mit Scicit-Learn): Gewicht der Identität
Erstellen Sie mit Django eine Hallo-Welt-Anwendung mit nur einer Datei
Erste Python ① Umgebungskonstruktion mit Pythonbrew & Hello World !!
Erstellen Sie in Tornado einen HTTP-Server (Hello World)
Python mit Go
Pymacs helloworld
Cython Helloworld
Ich habe versucht, Funktionen mit SIFT von OpenCV zu extrahieren
[Programmieren lernen] Logikvergleich nach Sprache Teil 1 ("Hallo Welt")
Studie vom Anfang von Python Hour1: Hallo Welt
[Kapitel 5] Einführung in Python mit 100 Klopfen Sprachverarbeitung
[Kapitel 6] Einführung in Scicit-Learn mit 100 Klopfen Sprachverarbeitung
Ein Ruby-Experte lernte die grundlegende Grammatik der Go-Sprache
[Kapitel 3] Einführung in Python mit 100 Klopfen Sprachverarbeitung
[Kapitel 2] Einführung in Python mit 100 Klopfen Sprachverarbeitung
Lernen Sie mit "Google Colaboratory" ganz einfach 100 Sprachverarbeitungsklopfen 2020.
Lassen Sie uns die Überlebenden von Kaggles Hello World, Titanic, durch logistische Regression vorhersagen.
[Kapitel 4] Einführung in Python mit 100 Klopfen Sprachverarbeitung