Java中包与子包的关系
谁能告诉我java中包和子包之间的关系吗?
Can anyone please let me know the relation between a package and a sub package in java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁能告诉我java中包和子包之间的关系吗?
Can anyone please let me know the relation between a package and a sub package in java?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
包和子包之间没有关系。它只是为了方便开发者而设计的层次结构,对于Java本身没有进一步的意义。
There is no relation between packages and subpackages. It is just a hierarchical structure for the convenience of a developer and has no further meaning to Java itself.
他们之间没有关系。
在 java 代码中打包 com.stackoverflow 就像操作系统中的 com/stackoverflow 一样。
对不起,我的英语很差,请原谅。
There is no relation between them.
package com.stackoverflow in java code just like com/stackoverflow in your operating system.
I'm sorry,my English is poor,beg your parden.
Java中包和子包之间的关系
正如Mark Rotteveel所说,这只是为了开发人员的方便而采用的层次结构。
如果你问它们之间的关系,我们可能会说父子关系。
包就像一个文件夹。 Java中包含一组相关的类、接口、枚举和注释。
子包只不过是在另一个包内定义的。
一个包里面可能有很多子包。
我们使用包来避免名称冲突并更好地组织您的代码,使访问变得容易。
在java中定义包:(包必须在你的代码的第一个代码中)
在java中导入包:
在java中预定义子包:
这里java是一个包,而util是一个子包(lang,net,util,awt,SQL)
如何在记事本中运行包
Relation between the package and a sub-package in Java
As Mark Rotteveel said It is just a hierarchical structure for the convenience of a developer
If you're asking about the relationship between them we might say that parent and child relationship.
A package is like a folder. In Java containing a group of related classes, interfaces, enumeration, and annotation.
Sub-package is nothing but defined inside of another package.
A package may have many sub-packages inside it.
We use packages to avoid name conflicts and to organize your code better, making access easy.
Define package in java:(package must be in the first code of your code)
import packages in java:
Predefined sub-packages in java:
here java is a package and util is a sub-package ( lang,net,util,awt,SQL)
How to run package in notepad