All Projects → KeKe-Li → For Learning Go Tutorial

KeKe-Li / For Learning Go Tutorial

Licence: apache-2.0
Introduction to beginners learn to go

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to For Learning Go Tutorial

Git Tutor
+md=❤️ Awesome tutorials from your git log
Stars: ✭ 376 (-3.84%)
Mutual labels:  tutorial
Go Todo Rest Api Example
📚 A RESTful API example for simple todo application with Go
Stars: ✭ 385 (-1.53%)
Mutual labels:  tutorial
Juliabasics
The open source version of book `Julia Programming Basics`
Stars: ✭ 387 (-1.02%)
Mutual labels:  tutorial
Learning Rust
Rust 学习之路 > Rust Programming Tutorial, include articles, interview, example, problems.
Stars: ✭ 376 (-3.84%)
Mutual labels:  tutorial
Prometheus For Developers
Practical introduction to Prometheus for developers.
Stars: ✭ 382 (-2.3%)
Mutual labels:  tutorial
Kotlin Tutorials
【Kotlin 视频教程】国内资料较少,我录制了一套视频作为抛砖引玉~
Stars: ✭ 14 (-96.42%)
Mutual labels:  tutorial
Judo Heroes
A React application to showcase rendering with Universal JavaScript
Stars: ✭ 373 (-4.6%)
Mutual labels:  tutorial
Firebase Instagram
📸 Instagram clone with Firebase Cloud Firestore, Expo, and React Native 😁😍
Stars: ✭ 389 (-0.51%)
Mutual labels:  tutorial
Gulp Tutorial
Code examples for my Gulp.js tutorial series
Stars: ✭ 383 (-2.05%)
Mutual labels:  tutorial
Infosec
Учебное пособие по защите информации кафедры радиотехники и систем управления МФТИ
Stars: ✭ 386 (-1.28%)
Mutual labels:  tutorial
Start Machine Learning In 2020
A complete guide to start and improve in machine learning (ML), artificial intelligence (AI) in 2021 without ANY background in the field and stay up-to-date with the latest news and state-of-the-art techniques!
Stars: ✭ 357 (-8.7%)
Mutual labels:  tutorial
Js Stack From Scratch
🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack.
Stars: ✭ 18,814 (+4711.76%)
Mutual labels:  tutorial
Hackintosh Installer University
Open source tutorial & information collector for hackintosh installation.
Stars: ✭ 3,815 (+875.7%)
Mutual labels:  tutorial
Manim Tutorial
A tutorial for manim, a mathematical animation engine made by 3b1b
Stars: ✭ 373 (-4.6%)
Mutual labels:  tutorial
Awesome Autonomous Vehicle
无人驾驶的资源列表中文版
Stars: ✭ 389 (-0.51%)
Mutual labels:  tutorial
Iclr2019 Openreviewdata
Script that crawls meta data from ICLR OpenReview webpage. Tutorials on installing and using Selenium and ChromeDriver on Ubuntu.
Stars: ✭ 376 (-3.84%)
Mutual labels:  tutorial
Please Contain Yourself
A Docker tutorial written for people who don't actually know Docker already.
Stars: ✭ 385 (-1.53%)
Mutual labels:  tutorial
User Machine Learning Tutorial
useR! 2016 Tutorial: Machine Learning Algorithmic Deep Dive http://user2016.org/tutorials/10.html
Stars: ✭ 393 (+0.51%)
Mutual labels:  tutorial
Open source demos
A collection of demos showcasing automated feature engineering and machine learning in diverse use cases
Stars: ✭ 391 (+0%)
Mutual labels:  tutorial
Openvim
Interactive tutorial for Vim.
Stars: ✭ 383 (-2.05%)
Mutual labels:  tutorial

For-learning-Go-Tutorial

准备写一本Go的书针对初学者快速入门开发和使用go!

学习Go语言需要去了解Go的特性,然后在深入的去实践,如果你想使用Go语言写出Go味道的程序,那么你就需要付出努力去实践了! 先来了解下Go语言为何创造出来的历史吧,Go 语言是由谷歌公司在 2007 年开始开发的一门语言,目的是能在多核心时代高效编写网络应用程序。Go 语言的创始人 Robert Griesemer、Rob Pike 和 Ken Thompson 都是在计算机发展过程中作出过重要贡献的人。 自从 2009 年 11 月正式公开发布后,Go 语言迅速席卷了整个互联网后端开发领域,其社区里不断涌现出类似 vitess、Docker、etcd、Consul 等重量级的开源项目。

Go是一种编译型语言,一种并发的、带垃圾回收的、快速编译的语言。它具有以下特点:

  • 它可以在一台计算机上用几秒钟的时间编译一个大型的Go程序。
  • Go为软件构造提供了一种模型,它使依赖分析更加容易,且避免了大部分C风格include文件与库的开头。
  • Go是静态类型的语言,它的类型系统没有层级。因此用户不需要在定义类型之间的关系上花费时间,这样感觉起来比典型的面向对象语言更轻量级。
  • Go完全是垃圾回收型的语言,并为并发执行与通信提供了基本的支持。

为了获得最佳的运行性能,GO语言被设计成一门静态编译型的语言,而不是动态解释型语言,这里我对静态编译型的语言和动态解释型语言做个简单的介绍,方便初学Go语言的新人理解。

1.静态编译型的语言

静态类型语言是指在编译时变量的数据类型即可确定的语言,多数静态类型语言要求在使用变量之前必须声明数据类型,某些具有类型推导能力的现代语言可能能够部分减轻这个要求. 并且通过编译器(compiler)将源代码编译成机器码,之后才能执行的语言。一般需经过编译(compile)、链接(linker)这两个步骤。编译是把源代码编译成机器码,链接是把各个模块的机器码和依赖库串连起来生成可执行文件。

代表语言:Java,Go,C

2.动态解释型语言

动态类型语言是在运行 时确定数据类型的语言。变量使用之前不需要类型声明,通常变量的类型是被赋值的那个值的类型。解释性语言的程序不需要编译,相比编译型语言省了道工序,解释性语言在运行程序的时候才逐行翻译。

代表语言:JavaScript、Python

Go语言的官方编译器被称为gc,包括编译工具5g,6g.8g,链接工具51,61和81以及文档查看工具godoc.

学习一门语言最好的方式就是去实践,那么我们就从go的例子开始实践吧!

golang编程

觉得此文章不错,支持我的话可以给我star ,⭐️!如果有问题可以加我的微信,也可以加入我们的交流群一起交流golang技术!

License

This is free software distributed under the terms of the MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].