Java 包 com 和 org

Java packages com and org(Java 包 com 和 org)
本文介绍了Java 包 com 和 org的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

orgcom包在Java中的含义是什么?

解决方案

根据Sun,包的命名空间应与您的域名相反,然后是您认为合适的名称.大多数公司或组织都有 .com.org 域名,因此大多数软件包以 com.org 开头..引用 Sun 代码约定:

<块引用>

唯一包名的前缀总是用全小写的ASCII字母写的,应该是顶级域名之一,目前是com、edu、gov、mil、net、org,或者是英文两个之一- 标识 ISO 标准 3166, 1981 中规定的国家/地区的字母代码.

软件包名称的后续组成部分根据组织自己的内部命名约定而有所不同.此类约定可能会指定某些目录名称组件是部门、部门、项目、机器或登录名.

他们提供的示例清楚地表明您应该使用公司的 DNS 名称:

<块引用>

com.sun.eng

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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Sending a keyboard event from java to any application (on-screen-keyboard)(将键盘事件从 java 发送到任何应用程序(屏幕键盘))
How to make JComboBox selected item not changed when scrolling through its popuplist using keyboard(使用键盘滚动其弹出列表时如何使 JComboBox 所选项目不更改)
Capturing keystrokes without focus(在没有焦点的情况下捕获击键)
How can I position a layout right above the android on-screen keyboard?(如何将布局放置在 android 屏幕键盘的正上方?)
How to check for key being held down on startup in Java(如何检查在Java中启动时按住的键)
Android - Get keyboard key press(Android - 获取键盘按键)