<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>小白教程 - Go语言系列教程</title>
    <link>https://www.xiaobai27.com/portal.php?mod=list&amp;catid=24</link>
    <description>Latest 20 articles of Go语言系列教程</description>
    <copyright>Copyright(C) 小白教程</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Mon, 11 May 2026 13:04:36 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.xiaobai27.com/static/image/common/logo_88_31.gif</url>
      <title>小白教程</title>
      <link>https://www.xiaobai27.com/</link>
    </image>
    <item>
      <title>Go语言基础之切片</title>
      <link>https://www.xiaobai27.com/article-479-1.html</link>
      <description><![CDATA[简单介绍切片slice的底层数据是数组,slice是对数组的封装,它描述一个数组的片段。两者都可以通过下标来访问单个元素。 数组是定长的,长度定义好之后,不能再更改。而切片则非常灵活,它可以动态地扩容。切片的类型和长 ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 15:01:00 +0000</pubDate>
    </item>
    <item>
      <title>Go语言数组</title>
      <link>https://www.xiaobai27.com/article-478-1.html</link>
      <description><![CDATA[1 概述固定长度，数组声明后长度便不能再修改只能存储一种特定类型元素的序列#2 语法编号方式代码示例1直接声明var arr int2makearr:=make(int,3)3字面量arr:=int{1,2,3}4自动识别长度arr:=int{1,2,3}5newarrp := ne ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:52:28 +0000</pubDate>
    </item>
    <item>
      <title>Go语言的循环语句</title>
      <link>https://www.xiaobai27.com/article-477-1.html</link>
      <description><![CDATA[Go 语言提供了以下几种类型循环处理语句：循环类型描述for 循环重复执行语句块循环嵌套在 for 循环中嵌套一个或多个 for 循环#循环控制语句循环控制语句可以控制循环体内语句的执行过程。GO 语言支持以下几种循环控  ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:47:00 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言条件语句</title>
      <link>https://www.xiaobai27.com/article-476-1.html</link>
      <description><![CDATA[1 程序的流程结构程序的流程控制结构一共有三种：顺序结构，选择结构，循环结构。顺序结构：从上向下，逐行执行。选择结构：条件满足，某些代码才会执行。0-1次分支语句：if，switch，select循环结构：条件满足，某 ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:43:29 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言运算符</title>
      <link>https://www.xiaobai27.com/article-475-1.html</link>
      <description><![CDATA[运算符用于在程序运行时执行数学或逻辑运算。Go 语言内置的运算符有：算术运算符关系运算符逻辑运算符位运算符赋值运算符其他运算符接下来让我们来详细看看各个运算符的介绍。算术运算符下表列出了所有Go语言的算术 ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:41:06 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言常量</title>
      <link>https://www.xiaobai27.com/article-474-1.html</link>
      <description><![CDATA[常量是一个简单值的标识符，在程序运行时，不会被修改的量。常量中的数据类型只可以是布尔型、数字型（整数型、浮点型和复数）和字符串型。常量的定义格式：const identifier  = value你可以省略类型说明符 ，因为编 ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:39:41 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言变量</title>
      <link>https://www.xiaobai27.com/article-473-1.html</link>
      <description><![CDATA[变量来源于数学，是计算机语言中能储存计算结果或能表示值抽象概念。变量可以通过变量名访问。Go 语言变量名由字母、数字、下划线组成，其中首个字符不能为数字。声明变量的一般形式是使用 var 关键字：var identifi ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:39:02 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言数据类型</title>
      <link>https://www.xiaobai27.com/article-472-1.html</link>
      <description><![CDATA[在 Go 编程语言中，数据类型用于声明函数和变量。数据类型的出现是为了把数据分成所需内存大小不同的数据，编程的时候需要用大数据的时候才需要申请大内存，就可以充分利用内存。Go 语言按类别有以下几种数据类型： ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:38:02 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言基础语法</title>
      <link>https://www.xiaobai27.com/article-471-1.html</link>
      <description><![CDATA[上一章节我们已经了解了 Go 语言的基本组成结构，本章节我们将学习 Go 语言的基础语法。Go 标记Go 程序可以由多个标记组成，可以是关键字，标识符，常量，字符串，符号。如以下 GO 语句由 6 个标记组成：fmt.Println ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:37:37 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言结构</title>
      <link>https://www.xiaobai27.com/article-470-1.html</link>
      <description><![CDATA[在我们开始学习 Go 编程语言的基础构建模块前，让我们先来了解 Go 语言最简单程序的结构。Go Hello World 实例Go 语言的基础组成有以下几个部分：包声明引入包函数变量语句  表达式注释接下来让我们来看下简单的代码 ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:37:02 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言环境安装</title>
      <link>https://www.xiaobai27.com/article-469-1.html</link>
      <description><![CDATA[Go 语言支持以下系统：LinuxFreeBSDMac OS X（也称为 Darwin）Windows安装包下载地址为：https://golang.org/dl/。如果打不开可以使用这个地址：https://golang.google.cn/dl/。各个系统对应的包名：操作系统包名Win ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:36:07 +0000</pubDate>
    </item>
    <item>
      <title>Go 语言教程</title>
      <link>https://www.xiaobai27.com/article-468-1.html</link>
      <description><![CDATA[Go 是一个开源的编程语言，它能让构造简单、可靠且高效的软件变得容易。Go是从2007年末由Robert Griesemer, Rob Pike, Ken Thompson主持开发，后来还加入了Ian Lance Taylor, Russ Cox等人，并最终于2009年11月开源 ... ...]]></description>
      <category>Go语言系列教程</category>
      <author>小白教程</author>
      <pubDate>Sun, 27 Feb 2022 14:35:21 +0000</pubDate>
    </item>
  </channel>
</rss>