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
基础教程推荐
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01