• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Why does a public class with another public subclass in the same code itself errs?

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
public class PublicTest{
public static void main(String args[]){
}
}
public class SubTest extends PublicTest{
}

This gives the following error when compiled:
javac PublicTest.java
PublicTest.java:5: class SubTest is coderanch, should be declared in a file named SubTest.java
public class SubTest extends PublicTest{
^
1 error
Can anyone please explain...
 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Java source file can only have, at most, one public class, it must have the same name as the file name.
Either change one of the class to package access or put it in a separate file, the code should be fine.

 
Ranch Hand
Posts: 119
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Deepa,
You cannot have two top-level classes that are both declared public- only a max of one is allowed in a file.
If you remove the public access modifier from SubTest it'll compile.
cheers,
Yoo-Jin.
 
Yoo-Jin Lee
Ranch Hand
Posts: 119
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Huiying,
I guess you beat me to the punch.
Yoo-Jin.
 
Deepa Marupaka
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Huiying and Yoo-jin!
 
reply
    Bookmark Topic Watch Topic
  • New Topic