java类名与文件名_为什么Java文件名必须与公共类名相同?

java类名与文件名

The question is that "Can we keep different names for java class name and java file name?"

问题是“我们可以为Java类名和Java文件名保留不同的名称吗?”

Yes, we can keep the different name for the java filename and java class name if and only if the class is not public.

是的,当且仅当该类不是公共类时,才能为java文件名和Java类名保留不同的名称。

There are two cases, that we will discuss here...

有两种情况,我们将在这里讨论...

  1. Case 1: We are taking different name if the class is not public

    情况1:如果该课程不是公开的,我们将使用其他名称

  2. Case 2: We are taking different name if the class is public

    情况2:如果该课程是公开的,我们将使用其他名称

Case 1: We are taking different name if the class is not public

情况1:如果该课程不是公开的,我们将使用其他名称

With the help of an example, we will see what will happen if the class is not public and in that case, we can take a different name for the java class and java file that means it is not mandatory to have the same name for the java class name and java filename in that case.

借助示例,我们将看到如果该类不是公共类,会发生什么情况,在这种情况下,我们可以为java类和java文件取一个不同的名称,这意味着不必强制为该类使用相同的名称。在这种情况下,java类名称和java文件名。

Example:

例:

class ClassIsNotPublic{
public static void main(String[] args){
String str1 = "This class is not public so we can take different name for the java filename and java classname";
String str2 = "This class is not prefixed with public keyword that's why it is not public";
System.out.println("What will happen if we take non public class " +str1);
System.out.println("Why it is not public class "+ str2);
} 
}

Output

输出量

E:\Programs>javac abc.java [abc is java filename]
E:\Programs>java ClassIsNotPublic [ClassIsNotPublic is java classname]
What will happen if we take non public class This class is not public so 
we can take different name for the java filename and java classname
Why it is not public class This class is not prefixed with public keyword 
that's why it is not public

Case 2: We are taking different name if the class is public

情况2:如果该课程是公开的,我们将使用其他名称

If we declared a class as "public" then, in that case, java filename and java class name must be same or in other words, we can’t take any other name for the java class name and java filename in the case of a public class.

如果我们将某个类声明为“ public”,则在这种情况下,java文件名和Java类名必须相同或换句话说,对于Java类名和java文件名,我们不能使用任何其他名称。公共课。

Example:

例:

public class ClassIsPublic{
public static void main(String[] args){
String str1 = "This class is public so we can't take different name for the java filename and java classname";
String str2 = "This class is prefixed with public keyword that's why it is public class";
System.out.println("What will happen if we take public class"+" " +str1);
System.out.println("Why it is public class "+ str2);
} 
}

Output

输出量

E:\Programs>javac xyz.java
xyz.java:1: error: class IfClassIsPublic is public, should be 
declared in a file named IfClassIsPublic.java
public class IfClassIsPublic{
^
1 error

Now we will see why it is required to take the same name for the java filename and java class name in the case of a public class?

现在,我们将看到为什么在公共类的情况下,要求Java文件名和Java类名使用相同的名称?

There are few points to understand why it is required to take the same name?

有几点要理解为什么需要使用相同的名称?

  • Let suppose we have a java file named "java1000" in that java file we have 1000 classes and in that case if we want to find any single class in 1000 classes so it will be more difficult to find and it will create a lot of confusion.

    假设我们有一个名为“ java1000”的java文件,该java文件中有1000个类,在这种情况下,如果我们想在1000个类中找到任何一个类,那么将很难找到它,并且会造成很多混乱。

  • In that java file we have 1000 classes we know that to find any class in 1000 classes will difficult so, in that case, almost one is class will be public and that public class will contain main() method so all the classes objects will be called from main() method class(i.e. public class) so if we take java filename and public class name will be same then it will be easy to find any class in the public class.

    在该java文件中,我们有1000个类,我们知道很难在1000个类中找到任何一个类,因此,在那种情况下,几乎是class是public,而public class将包含main()方法,因此所有class对象都是从main()方法类(即公共类)调用,因此,如果我们使用java文件名,并且公共类名称相同,则可以很容易在公共类中找到任何类。

  • If our java filename and public class name will be same so by using java filename we can easily reach to public class(main() method class) and if we reach to public class then from that class we can reach to any other class also from the 1000 classes and we know all classes object will be called from the main() method class(i.e. public class).

    如果我们的java文件名和公共类名相同,那么通过使用java文件名,我们可以轻松地访问public class(main()方法类);如果我们访问public类,那么从该类中我们也可以访问任何其他类。 1000个类,我们知道所有类对象都将从main()方法类(即公共类)中调用。

翻译自: https://www.includehelp.com/java/why-does-java-file-name-must-be-same-as-public-class-name.aspx

java类名与文件名

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380222.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

玩什么都别玩暧昧

暧昧 这个介于朋友与情人间的关系 能给予寂寞的人些须安慰与短暂的幸福感 暧昧 没有任何承诺 彼此都不向对方许下诺言 没有甜言蜜语 没有海誓山盟 却在彼此悲伤难过的时候 给予彼此依靠 也许 这种关系是最好的 因为它不虚假 它没有骗人的谎言 因为彼此没有承诺 两个人 可以一起…

快速幂模

快速幂模简述师从普通思路缺陷一:溢出缺陷二:运算次数多二分化快速幂模简述 计算 ana^nanmod p 师从 本篇是观Vita君算法视频后总结,他是bilibili一位小up主:小学生Vita君 正所谓“生乎吾后,其闻道也亦先乎吾&#…

《那些年啊,那些事——一个程序员的奋斗史》——31

“我们再重新找房吧?”伍定轩对段伏枥说道。“为什么?”段伏枥突然觉得奇怪,为何伍定轩会突然提出这个问题。“你看我的仙人掌。”伍定轩指了指摆在电脑旁边的一盆仙人掌。当初伍定轩决定买这小盆仙人掌的时候,也是从网上听人说&a…

数煤球

煤球数目 有一堆煤球,堆成三角棱锥形。具体: 第一层放1个, 第二层3个(排列成三角形), 第三层6个(排列成三角形), 第四层10个(排列成三角形)&…

cobalt strick 4.0系列教程(3)---数据管理

0x01 概述 Cobalt Strike 的团队服务器是行动期间 Cobalt Strike 收集的所有信息的中间商。Cobalt Strike 解析来自它的 Beacon payload 的输出,提取出目标、服务和凭据。 如果你想导出 Cobalt Strike 的数据,通过 Reporting → Export Data 。Cobalt S…

JavaScript中的交互式网页/事件处理

Programming languages like C, C etc are all based on synchronous coding approach i.e. the execution takes place from top to bottom in a linear manner. 诸如C,C 等编程语言均基于同步编码方法,即执行以线性方式从上到下进行。 But JavaScript…

2008来了,搬个凳子先

此帖为证. 转载于:https://www.cnblogs.com/margiex/archive/2008/01/01/1022098.html

题目收藏夹(自用)

题目收藏夹(自用) 计数质数 【埃氏筛】【线性筛】

calayer 与uiview

研究Core Animation已经有段时间了,关于Core Animation,网上没什么好的介绍。苹果网站上有篇专门的总结性介绍,但是似乎原理性的东西不多,看得人云山雾罩,感觉,写那篇东西的人,其实是假 设读的人…

代换-置换网络(SP网络)

0x01 概述 代换-置换网络是一系列被应用于分组密码中相关的数学运算,高级加密标准(英语:AES)、3-Way、Kuznyechik、PRESENT、SAFER、SHARK、Square都有涉用。这种加密网络使用明文块和密钥块作为输入,并通过交错的若干…

Java SecurityManager getSecurityContext()方法与示例

SecurityManager类的getSecurityContext()方法 (SecurityManager Class getSecurityContext() method) getSecurityContext() method is available in java.lang package. getSecurityContext()方法在java.lang包中可用。 getSecurityContext() method is used to return an ob…

生日蜡烛

某君从某年开始每年都举办一次生日party,并且每次都要吹熄与年龄相同根数的蜡烛。 现在算起来,他一共吹熄了236根蜡烛。 请问,他从多少岁开始过生日party的? 请填写他开始过生日party的年龄数。 注意:你提交的应该是一…

修改vs2005的键盘风格设置

由于以前都是用VC6.0,安装的VS.NET默认的键盘快捷键布局都是C#的。 修改方法: 选项 -> 环境 -> 键盘 。进去后选第一项:键盘映射方案 即可,还可以在这里自定义其他快捷键 转载于:https://www.cnblogs.com/jacktu/archive/…

【贪心】最小生成树Kruskal算法Python实现

文章目录 [toc]问题描述最小生成树的性质证明 Kruskal算法时间复杂性Python实现 个人主页:丷从心 系列专栏:贪心算法 问题描述 设 G ( V , E ) G (V , E) G(V,E)是无向连通带权图, E E E中每条边 ( v , w ) (v , w) (v,w)的权为 c [ v ] …

asp.net(c#) 将dbf转换为xls或wps,并将数据的列名改成中文;并判断本机是否安装office2003,2007和wps2007,2010...

using Microsoft.Office.Interop.Excel;//转换为excel时,需要引用此命名空间 using ET;//转换为wps时,需要引用此命名空间using KSO;//转换为wps时,需要引用此命名空间当转换为excel时,需要引入Microsoft.Office.Interop.Excel.dl…

Java GregorianCalendar getActualMaximum()方法与示例

GregorianCalendar类getActualMaximum()方法 (GregorianCalendar Class getActualMaximum() method) getActualMaximum() method is available in java.util package. getActualMaximum()方法在java.util包中可用。 getActualMaximum() method is used to get the actual maxim…

一点一滴学习Linux--Mysql篇

1.查看是否安装了Mysql [rootlocalhost zhoulinghong]# rpm -qa |grep MySQL MySQL-server-community-5.1.22-0.rhel4 已经安装了。 2.安装mysql(rpm) [rootlocalhost zhoulinghong]# rpm -ivh MySQL-server-community-5.1.22-0.rhel4.i386.rpm …

HTML5 学习笔记

HTML5 学习笔记 前言 该学习笔记的相关学习视频:【狂神说Java】HTML5完整教学通俗易懂 目前笔记只有简单的例子和框架,将来在实践中会进一步学习和补充内容 目录HTML5 学习笔记前言网页基本信息网页基本标签标题标签段落标签换行标签水平线标签字体样式…

面向对象(方法的形式参数)

1,局部变量与成员变量的区别 1,在类中的位置不同 成员变量:在类中方法外 局部变量:在方法定义中或者方法声明上2,在内存中的位置不同 成员变量:在堆内存(成员变量属于对象,对象进…

保护机制

0x01 概述 操作系统提供了许多安全机制来尝试降低或阻止缓冲区溢出攻击带来的安全风险,包括DEP、ASLR等。在编写漏洞利用代码的时候,需要特别注意目标进程是否开启了DEP(Linux下对应NX)、ASLR(Linux下对应PIE&#xf…