How do I determine the visibility of identifiers in Go?

Mary-Kate Olsen
Release: 2024-11-11 15:34:03
Original
450 people have browsed it

How do I determine the visibility of identifiers in Go?

Public and Private Identifiers in Go: Upper and Lower Case

In Go, the public and private access modifiers are determined by the first character of an identifier's name. Uppercase identifiers are public, while lowercase identifiers are private. This naming convention applies not only to functions but also to container classes.

Public Functions

As mentioned, public functions in Go are declared with an uppercase first character. This rule applies even to functions within packages you import. For example, if you import the "container/list" package, the List type will be accessible as "list.List".

Container Class References

In the case of container class references, such as *list.List and l := list.New(), the lowercase identifier (list) refers to the package name, not the type itself. The package name is assigned as an alias for the last part of the package path (in this case, "list").

Package Names

It's important to note that the actual package name may not always match the last part of the package path. The package name is determined by the declaration within the package's code.

Rule Summary

The general rule for public and private identifiers in Go is:

  • Public: Uppercase first character (e.g., myFunc)
  • Private: Lowercase first character (e.g., _myFunc or _myFuncImpl)

The above is the detailed content of How do I determine the visibility of identifiers in Go?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template