The moose likes Beginning Java and the fly likes java class names Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "java class names" Watch "java class names" New topic
Author

java class names

yaswanth yash
Greenhorn

Joined: Apr 18, 2012
Posts: 12
why a java file name and its class names should be same?
Matthew Brown
Bartender

Joined: Apr 06, 2010
Posts: 3795
    
    1

Because that's how the language was designed.

You'd have to ask the language designers for the real reason, but it's a sensible way of organising your code, and they decided to enforce one approach.
fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 9956
    
    6

If you search through this forum, you will find this has been asked and discussed many times.


Never ascribe to malice that which can be adequately explained by stupidity.
Winston Gutkowski
Bartender

Joined: Mar 17, 2011
Posts: 4761
    
    7

yaswanth yash wrote:why a java file name and its class names should be same?

Why not? What would you suggest instead?

Winston


Isn't it funny how there's always time and money enough to do it WRONG?
Naishadh Parmar
Ranch Hand

Joined: Jun 02, 2011
Posts: 77

You may ask this question to James Gosling, Mike Sheridan and Patrick Naughton this question(designers of this programming language) !!!
Its just a way of organizing and it is actually good so that there is no disconnect between the class name and the file name.
Or else if you wanted to know where an error occured you would have to open all the files see the class names and then identify the problem which would consume a lot of your quality time.
yaswanth yash
Greenhorn

Joined: Apr 18, 2012
Posts: 12
I hope you can guess my suggestion...mr.winston
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56230
    
  13

yaswanth yash wrote:I hope you can guess my suggestion...mr.winston

No we can't. I can think of no better reasonable suggestion.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: java class names
 
Similar Threads
Exception in thread "main" java.lang.NoClassDefFoundError
methods query
converts integer into string
problem with my jsp page
Statement,PrepareStatement