Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
  • 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Compile with the package statement

 
Ranch Hand
Posts: 524
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello all,
I have 2 questions.
1) How to compile a program with the package statement. I mean when the file is compiled it should go to the correct folder specified by the package decleration.
2)
package abc;
class Cl1 {
}
package xyz;
import abc.*;
class Cl2 extends Cl2{
}

If the Cl1 class is not compiled, if you compile the Cl2 java file does it give compiler error saying Cl1 was not compiled or can not find Cl1? or does it compile the base class as well?
reply
    Bookmark Topic Watch Topic
  • New Topic