下划线“ public”的常规前缀是“ private”?

时间:2019-05-23 08:35:06

标签: naming-conventions

首先,我知道_的实际作用,这只是框架问题的一种简单方法:)。

好奇的是,是否曾经有过这种事情,如果有的话,那是什么。

1 个答案:

答案 0 :(得分:0)

例如,编程语言Go对导出的声明使用大写字母,对于未导出的声明使用小写字母。

示例:

func Product(x int, y int) int { //exported function
    return x * y
}

func sum(x int, y int) int { //non-exported function
    return x + y
}