Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7021841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:30:11+00:00 2026-05-27T23:30:11+00:00

According to the JLS, it is valid syntax to have multiple classes in one

  • 0

According to the JLS, it is valid syntax to have multiple classes in one file, so long as only a single class in the file is public. As I understand it, this is usually to allow small classes referred to only in a single file to be maintained within that file.

One area I’m not sure about is if other files in the same package are able to safely refer to that second class in the original file – by the scoping rules it would seem valid, but I’m not sure if it is a problem while compiling. I have seen it work quite frequently, but I’ve also been told by other developers on the project that there are occasional build issues finding the symbol in question after making changes elsewhere in the system. Is this setup of referring to package private classes embedded in other class’ files introducing some sort compilation order dependency into the process that is making the build fragile?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T23:30:11+00:00Added an answer on May 27, 2026 at 11:30 pm

    Yes, that should be absolutely fine – unless you’ve got a badly-configured build system, basically. You should probably be compiling all the source for the same package in one go anyway.

    I can see it potentially causing a problem for some build systems which try to work out what needs recompiling – if they assume that the name of the source file matches the name of the resulting class, they could get confused here (even if you don’t have multiple classes in the same file) but that’s a tool problem rather than a language problem.

    Note that normally if I have “small classes referred to only in a single file” I’d normally make them private static nested classes:

    public class OuterClass
    {
        // Normal code...
    
        // Only used within OuterClass
        private static class Foo
        {
        }
    }
    

    That’s cleaner (IMO) than giving something package-private access, if it’s really only intended to be used from a single class.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

According to C++03 Standard (23.1/3) only copy-constructible class objects can be stored in STL
According to what I have found so far, I can use the following code:
According to the answers to this question, I cannot embed a file version in
According to be Spring Framework documentation, logging is the only mandatory dependency of Spring.
According To reflector , ExpandoObject Does implemenet IDictionary<string, object> How ever I have this
According Mac App Store rules 2.30: Program may write only to allowed locations. My
According to my class notes, you can allocate an array in C++ like int
According to Wikipedia , partition-based selection algorithms such as quickselect have runtime of O(n)
According to: http://java.sun.com/docs/books/jls/second_edition/html/typesValues.doc.html 4.5.2 Variables of Reference Type A reference type can hold a
According to spec , only the BODY and FRAMESET elements provide an onload event

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.