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

  • Home
  • SEARCH
  • 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 8886145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:29:12+00:00 2026-06-14T21:29:12+00:00

i have two java classes in a package. I want to create one class’s

  • 0

i have two java classes in a package. I want to create one class’s object into another but it gives an error message ERROR: cannot find symbol.

package pckg;
public class aa{
   private String name;
   public aa(){} //Constructor of aa class
   public void setName(String name){this.name=name;}
   public String getName(){return name;}
}

package pckg;
public class bb{
   aa obj = new aa(); //This line gives error message

   public bb(){} //Constructor of bb class

} 

both classes are in a same folder pckg.

ERROR Message:

D:\Java\mypack>cd..

D:\Java>cd pckg

D:\Java\pckg>set path=d:\java\jdk1.5\bin

D:\Java\pckg>javac aa.java

D:\Java\pckg>javac bb.java
bb.java:3: cannot find symbol
symbol  : class aa
location: class pckg.bb
aa obj = new aa(); //This line gives error message
^
bb.java:3: cannot find symbol
symbol  : class aa 
location: class pckg.bb
aa obj = new aa(); //This line gives error message
            ^
2 errors
  • 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-06-14T21:29:14+00:00Added an answer on June 14, 2026 at 9:29 pm
    D:\Java\ > javac -classpath . pckg\aa.java
    D:\Java\ > javac -classpath . pckg\bb.java
    

    If you don’t specify a classpath, javac doesn’t know where to find the already compiled classes.

    Also, classes should start with an upper-case letter in Java. And I would avoid using the same directory for the source files and class files. You’d better put your sources inside d:\Java\src and your classes inside D:\Java classes. Then, use the following command to compile everything at once:

    D:\Java\ >javac -cp classes -d classes src\pckg\*.java
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two java classes as follows App1 without a package: class App1 {
I have two Java interfaces and one implementing class. (I have used Eclipse to
I have written two simple Java classes (one of them containing main(), and the
Let's say I have the following two classes: package example.model; public class Model {
I have two java classes for parsing jason into java alone. Beyond that, the
I have two classes, one for articles and another for the cart. The cart
I am new to java and I have two classes (class calc and button)
I have two classes: MyApplication Library The Library has already been compiled into Library.class
I'm making a shopping list mobile application (Java ME) and i have two classes;
How do I do forward declarations in Java? I have two classes, each needs

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.