mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 21:52:31 +03:00
Fixed the statement that rune is an alias for uint32 in the translations
This commit is contained in:
parent
d7ead48d1f
commit
4b5cbc91eb
@ -79,7 +79,7 @@ func learnTypes() {
|
||||
Zeilenumbrüche beinhalten.` // Selber Zeichenketten-Typ
|
||||
|
||||
// nicht-ASCII Literal. Go Quelltext ist UTF-8 kompatibel.
|
||||
g := 'Σ' // Ein Runen-Typ, alias uint32, gebraucht für unicode code points.
|
||||
g := 'Σ' // Ein Runen-Typ, alias int32, gebraucht für unicode code points.
|
||||
|
||||
f := 3.14195 // float64, eine IEEE-754 64-bit Dezimalzahl
|
||||
c := 3 + 4i // complex128, besteht intern aus zwei float64-er
|
||||
|
@ -77,7 +77,7 @@ func learnTypes() {
|
||||
saltos de línea.` // mismo tipo cadena
|
||||
|
||||
// Literal no ASCII. Los fuentes de Go son UTF-8.
|
||||
g := 'Σ' // Tipo rune, un alias de uint32, alberga un punto unicode.
|
||||
g := 'Σ' // Tipo rune, un alias de int32, alberga un punto unicode.
|
||||
f := 3.14195 // float64, el estándar IEEE-754 de coma flotante 64-bit.
|
||||
c := 3 + 4i // complex128, representado internamente por dos float64.
|
||||
// Sintaxis Var con inicializadores.
|
||||
|
@ -79,7 +79,7 @@ func learnTypes() {
|
||||
개행을 포함할 수 있다.` // 같은 string 타입
|
||||
|
||||
// non-ASCII 리터럴. Go 소스는 UTF-8로 작성해야 한다.
|
||||
g := 'Σ' // 유니코드 코드 포인트를 담고 있고, uint32 타입의 가칭(alias)인 rune 타입
|
||||
g := 'Σ' // 유니코드 코드 포인트를 담고 있고, int32 타입의 가칭(alias)인 rune 타입
|
||||
|
||||
f := 3.14195 // float64, an IEEE-754 64-bit 부동소수 타입
|
||||
c := 3 + 4i // complex128, 내부적으로는 두 개의 float64 타입으로 표현됨
|
||||
|
@ -75,7 +75,7 @@ func learnTypes() {
|
||||
pode incluir quebras de linha.` // mesmo tipo string
|
||||
|
||||
// literal não-ASCII. A linguagem Go utiliza de raiz a codificação UTF-8.
|
||||
g := 'Σ' // tipo rune, um alias para uint32, que contém um código unicode
|
||||
g := 'Σ' // tipo rune, um alias para int32, que contém um código unicode
|
||||
|
||||
f := 3.14195 // float64, número de vírgula flutuante de 64bit (IEEE-754)
|
||||
c := 3 + 4i // complex128, representado internamente com dois float64s
|
||||
|
@ -79,7 +79,7 @@ func learnTypes() {
|
||||
может содержать переносы строк` // Тоже тип данных string
|
||||
|
||||
// Символ не из ASCII. Исходный код Go в кодировке UTF-8.
|
||||
g := 'Σ' // тип rune, это алиас для типа uint32, содержит символ юникода.
|
||||
g := 'Σ' // тип rune, это алиас для типа int32, содержит символ юникода.
|
||||
|
||||
f := 3.14195 // float64, 64-х битное число с плавающей точкой (IEEE-754).
|
||||
c := 3 + 4i // complex128, внутри себя содержит два float64.
|
||||
|
@ -68,7 +68,7 @@ func learnTypes() {
|
||||
can include line breaks.` // 同样是String类型
|
||||
|
||||
// 非ascii字符。Go使用UTF-8编码。
|
||||
g := 'Σ' // rune类型,uint32的别名,使用UTF-8编码
|
||||
g := 'Σ' // rune类型,int32的别名,使用UTF-8编码
|
||||
|
||||
f := 3.14195 // float64类型,IEEE-754 64位浮点数
|
||||
c := 3 + 4i // complex128类型,内部使用两个float64表示
|
||||
|
Loading…
Reference in New Issue
Block a user