Go2将修改导出规则

Go2将修改导出规则,只有小写字母和"_"开头的不导出. 中文等不区分大小写的标识符认导出.

A solution that's been kicking around for a while:

For Go 2 (can't do it before then): Change the deFinition to "lower case letters and _ are package-local; all else is exported". Then with non-cased languages,such as Japanese,we can write 日本語 for an exported name and _日本語 for a local name. This rule has no effect,relative to the Go 1 rule,with cased languages. They behave exactly the same.

http://code.google.com/p/go/issues/detail?id=5763

相关文章

什么是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...