lnlidawei

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

[go]:  golang的特征【包】:包中要输出的变量名或者函数名要以大写字母开头

 

 

 

 

Exported names

 

    In Go, a name is exported if it begins with a capital letter. For example, Pizza is an exported name, as is Pi, which is exported from the math package.

 

  pizza and pi do not start with a capital letter, so they are not exported.

 

    When importing a package, you can refer only to its exported names. Any "unexported" names are not accessible from outside the package.

 

    Run the code. Notice the error message.

 

    To fix the error, rename math.pi to math.Pi and try it again.

 

 

 

 

References:

 

  1.    Exported names    --    https://go.dev/tour/basics/3

 

posted on 2024-04-21 06:37  lnlidawei  阅读(2)  评论(0编辑  收藏  举报