Java packages com and org(Java 包 com 和 org)
问题描述
org
和com
包在Java中的含义是什么?
根据Sun,包的命名空间应与您的域名相反,然后是您认为合适的名称.大多数公司或组织都有 .com
或 .org
域名,因此大多数软件包以 com.
或 org 开头.代码>.引用 Sun 代码约定:
唯一包名的前缀总是用全小写的ASCII字母写的,应该是顶级域名之一,目前是com、edu、gov、mil、net、org,或者是英文两个之一- 标识 ISO 标准 3166, 1981 中规定的国家/地区的字母代码.
软件包名称的后续组成部分根据组织自己的内部命名约定而有所不同.此类约定可能会指定某些目录名称组件是部门、部门、项目、机器或登录名.
他们提供的示例清楚地表明您应该使用公司的 DNS 名称:
<块引用>com.sun.engp>
com.apple.quicktime.v2
edu.cmu.cs.bovik.cheese
您还将看到 edu.
和 net.
打包出 在野外也是如此,尽管它们不太常见.
What are the meaning of the packages org
and com
in Java?
According to Sun, packages should be namespaced according to the inverse of your domain name, and then followed by whatever you see fit. Most companies or organisations have a .com
, or .org
domain name, and hence most packages start with com.
or org.
. To quote from the Sun Code Conventions:
The prefix of a unique package name is always written in all-lowercase ASCII letters and should be one of the top-level domain names, currently com, edu, gov, mil, net, org, or one of the English two-letter codes identifying countries as specified in ISO Standard 3166, 1981.
Subsequent components of the package name vary according to an organization's own internal naming conventions. Such conventions might specify that certain directory name components be division, department, project, machine, or login names.
And the examples that they give, make it pretty clear that you are meant to use the companies DNS name:
com.sun.eng
com.apple.quicktime.v2
edu.cmu.cs.bovik.cheese
You will also see edu.
and net.
packages out in the wild as well, although they are less common.
这篇关于Java 包 com 和 org的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 包 com 和 org


- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01