Go语言学习笔记 - 简介

进入IT行业已经快6年了,接触比较多的编程语言有Java、C#、Python包括更早期的C语言,最喜欢的还是Java和Python。Java做为我写过最多的程序语言,纯面向对象,语言设计优雅,像是在做艺术品,可是又对其臃肿,把一件很简单的事情变的如此复杂而深恶痛绝,Python很简洁,但是做为解释性语言,性能又是问题。

Go语言做为2009年Google发布的一款开源的编程语言,还很年轻,尚为成熟,还有很长的路要走。直到2012年才发布第一个正式版本Go1,不过我相信在Google的大力推动下,未来将会有不错的发展。

有想学习Go语言的朋友可以跟我交流,大家一起学习进步。Go语言的书籍有《The Way To Go》、《Programming in Go》。
The Way To Go 电子书下载地址:http://download.csdn.net/download/kukucckku/4394839

我简单的了解一下Go,就被它的魅力所深深的吸引了。我为什么要学一个新语言,这个对自己来说是个好问题,《The Way To Go》第1.2.2章节已经有很好的解释了。

1.2.2 Why a new language?
- C/C++ did not evolve with the computing landscape,no major systems language has emergedin over a decade: so there isadefinite need for a new systems language,appropriate for needsof our computing era.
- In contrast to computing power,software development is not considerably faster or moresuccessful (considering the numberof Failed projects) and applications still grow in size,so anew low-level language,but equipped with higher concepts,is needed.
- Before Go a developer had to choose between fast execution but slow and not efficient building(like C++),efficientcompilation (but not so fast execution,like .NET or Java),or ease ofprogramming (but slower execution,like the dynamiclanguages): Go is an attempt to combineall three wishes: efficient and thus fast compilation,fast execution,ease ofprogramming.
其实最后一句话Go is an attempt to combineall three wishes: efficient and thus fast compilation,ease ofprogramming. 的三个理由足够了,这将是我学习笔记的一第篇,加油。

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1 Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...