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
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。