Merging other languages

This commit is contained in:
James Miranda
2016-09-23 18:01:10 -03:00
parent 380a8ee74c
commit de3c5bdaa4
490 changed files with 24539 additions and 24588 deletions

View File

@@ -1,23 +1,20 @@
# 1 GO环境配置
欢迎来到Go的世界让我们开始探索吧
Go是一种新的语言,一种并发的、带垃圾回收的、快速编译的语言。它具有以下特点:
- 它可以在一台计算机上用几秒钟的时间编译一个大型的Go程序。
- Go为软件构造提供了一种模型它使依赖分析更加容易且避免了大部分C风格include文件与库的开头。
- Go是静态类型的语言它的类型系统没有层级。因此用户不需要在定义类型之间的关系上花费时间这样感觉起来比典型的面向对象语言更轻量级。
- Go完全是垃圾回收型的语言并为并发执行与通信提供了基本的支持。
- 按照其设计Go打算为多核机器上系统软件的构造提供一种方法。
Go是一种编译型语言它结合了解释型语言的游刃有余动态类型语言的开发效率以及静态类型的安全性。它也打算成为现代的支持网络与多核计算的语言。要满足这些目标需要解决一些语言上的问题一个富有表达能力但轻量级的类型系统并发与垃圾回收机制严格的依赖规范等等。这些无法通过库或工具解决好因此Go也就应运而生了。
在本章中我们将讲述Go的安装方法以及如何配置项目信息。
## 目录
![](images/navi1.png?raw=true)
## links
* [目录](<preface.md>)
* 下一节: [Go安装](<01.1.md>)
# 1 Go Environment Configuration
Welcome to the world of Go, let's start exploring!
Go is a fast-compiled, garbage-collected, concurrent systems programming language. It has the following advantages:
- Compiles a large project within a few seconds.
- Provides a software development model that is easy to reason about, avoiding most of the problems associated with C-style header files.
- Is a static language that does not have levels in its type system, so users do not need to spend much time dealing with relations between types. It is more like a lightweight object-oriented language.
- Performs garbage collection. It provides basic support for concurrency and communication.
- Designed for multi-core computers.
Go is a compiled language. It combines the development efficiency of interpreted or dynamic languages with the security of static languages. It is going to be the language of choice for modern, multi-core computers with networking. For these purposes, there are some problems that need to inherently be resolved at the level of the language of choice, such as a richly expressive lightweight type system, a native concurrency model, and strictly regulated garbage collection. For quite some time, no packages or tools have emerged that have aimed to solve all of these problems in a pragmatic fashion; thus was born the motivation for the Go language.
In this chapter, I will show you how to install and configure your own Go development environment.
## Links
- [Directory](preface.md)
- Next section: [Installation](01.1.md)