The Artima Developer Community
Sponsored Link

Java Buzz Forum
Java Tutorial : Java Nested Classes Categories

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Ram N

Posts: 2777
Nickname: ramram
Registered: Jul, 2014

Ram N is Java Programmer
Java Tutorial : Java Nested Classes Categories Posted: Jan 5, 2016 12:44 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Ram N.
Original Post: Java Tutorial : Java Nested Classes Categories
Feed Title: JAVA EE
Feed URL: http://ramj2ee.blogspot.com/feeds/posts/default?alt=rss
Feed Description: This blog has viedo tutorials and Sample codes related to below Technologies. 1.J2EE 2.Java 3.Spring 4.Hibernate 5.Database 6.Oracle 7.Mysql 8.Design Patterns
Latest Java Buzz Posts
Latest Java Buzz Posts by Ram N
Latest Posts From JAVA EE

Advertisement

Click here to watch in Youtube :
https://www.youtube.com/watch?v=zibzNSxrago&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java Nested Classes Categories

OuterClass.java
public class OuterClass
{

int a;

public void outerDisplay()
{
System.out.println("Outer class display method : ");
}

/*
* Nested classes that are declared static are called static nested classes.
*
* Static nested classes do not have access to other members of the
* enclosing class.
*/

static class StaticNestedClass
{
int b;

public void nestedStaticDisplay()
{
System.out.println("nested Static Display method : ");
}
}

/*
* Non-static nested classes are called inner classes.
*
* As a member of the OuterClass, a nested class can be
* declared private, public, protected, or package private. (outer classes
* can only be declared public or package private.).
*
* Non-static nested classes (inner classes) have access to other members of
* the enclosing class, even if they are declared private. 
*/

class InnerClass
{
int c;

public void innerDisplay()
{
System.out.println("inner Display method : ");
}
}

}

Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/NestedClassDemo-Categories-App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/NestedClassDemo-Categories-App/NestedClassDemo

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/41d9dfe14fcf9b8b617da7211fce54dcabe49f5c/BasicJava/NestedClassDemo-Categories-App/NestedClassDemo/?at=master

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Read: Java Tutorial : Java Nested Classes Categories

    Topic: Significant Software Development Developments of 2015 Previous Topic   Next Topic Topic: Containers Will Change the Game Server Hosting Industry

    Sponsored Links



    Google
      Web Artima.com   

    Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use