• 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

inner classes

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can a static innerclass can extend another class
class outer{
static class inner extend Frame{
inner()
{
super("my window");
setSize(300,300);
setVisible(true);
}
}
}
class test{
public static void main(String args[])
{
outer.inner i=new outer.inner();
}
}

kindly please explain the result.
------------------
 
Ranch Hand
Posts: 318
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the program is running fine


------------------
KS
 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi George,
static class is similar to any other non-static class except that
it has the access to only static members of the enclosing class.
So I think there's no harm by extending a class.

------------------
Regards
---------
vadiraj

*****************
There's a lot of I in J.
*****************
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic