Inner Classes.

Slides:



Advertisements
Similar presentations
Introduction to classes Sangeetha Parthasarathy 06/11/2001.
Advertisements

Programming With Java ICS201 University Of Hail1 Chapter 13 Inner Classes.
Nested Classes Yoshi Modified from:
Unit 08 & 091 Nested Classes Introduction Inner Classes Local Classes Anonymous Classes Exercises.
Programming with Java © 2002 The McGraw-Hill Companies, Inc. All rights reserved. 1 Chapter 12 More OOP, Interfaces, and Inner Classes.
Slides prepared by Rose Williams, Binghamton University Chapter 13 Interfaces and Inner Classes.
Slides prepared by Rose Williams, Binghamton University Chapter 7 Inheritance.
Slides prepared by Rose Williams, Binghamton University Chapter 7 Inheritance.
Chapter 13 Interfaces and Inner Classes Slides prepared by Rose Williams, Binghamton University Copyright © 2008 Pearson Addison-Wesley. All rights reserved.
Evan Korth New York University Computer Science I Classes and Objects Professor: Evan Korth New York University.
Enhancing classes Visibility modifiers and encapsulation revisited
Slides prepared by Rose Williams, Binghamton University Chapter 13 Interfaces and Inner Classes.
Inner Classes. Lecture Objectives Learn about inner classes. Know the differences between static and non- static inner classes. Designing and using inner.
CS102--Object Oriented Programming Lecture 16: – Inner classes + review Copyright © 2008 Xiaoyan Li.
Classes, Encapsulation, Methods and Constructors
Unit 081 Introduction to Nested Classes Nested classes are classes defined within other classes The class that includes the nested class is called the.
OOP in Java – Inner Classes Nelson Padua-Perez William Pugh Department of Computer Science University of Maryland, College Park.
Slides prepared by Rose Williams, Binghamton University Chapter 13 Interfaces and Inner Classes.
CS102--Object Oriented Programming Lecture 15: Interfaces Copyright © 2008 Xiaoyan Li.
1 Introduction to Searching and Sorting Comparable Interface -Reading p Comparator Interface.
Inner Classes in Java. Overview Inner class – one class nested inside another – static (i.e. class) rarely if ever used – member (i.e. instance) – anonymous.
CMSC 202 Inner Classes. Aug 7, Simple Uses of Inner Classes Inner classes are classes defined within other classes  The class that includes the.
Inheritance. Types of Inheritance Implementation inheritance means that a type derives from a base type, taking all the base type’s member fields and.
Programming Languages and Paradigms Object-Oriented Programming.
Writing Classes (Chapter 4)
Introduction to Object Oriented Programming. Object Oriented Programming Technique used to develop programs revolving around the real world entities In.
Programming in Java Unit 2. Class and variable declaration A class is best thought of as a template from which objects are created. You can create many.
Inheritance Extending Class Functionality. Polymorphism Review Earlier in the course, we examined the topic of polymorphism. Many times in coding, we.
Objects and Classes Chapter 6 CSCI CSCI 1302 – Objects and Classes2 Outline Introduction Defining Classes for Objects Constructing Objects Accessing.
Java Interfaces. Interfaces An interface is something like an extreme case of an abstract class – However, an interface is not a class – It is a type.
Comp 249 Programming Methodology Chapter 13 Interfaces & Inner Classes Dr. Aiman Hanna Department of Computer Science & Software Engineering Concordia.
ACM/JETT Workshop - August 4-5, : Defining Classes in Java.
Static. 2 Objectives Introduce static keyword –examine syntax –describe common uses.
UMass Lowell Computer Science Java and Distributed Computing Prof. Karen Daniels Fall, 2000 Lecture 9 Java Fundamentals Objects/ClassesMethods Mon.
CMSC 202 Inheritance II. Version 10/092 Inherited Constructors? An Employee constructor cannot be used to create HourlyEmployee objects. Why not? We must.
Interfaces and Inner Classes
Access Modifiers Control which classes use a feature Only class-level variables may be controlled by access modifiers Modifiers 1. public 2. protected.
Basic Syntax อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา Chapter 2.
Basic Class Structure. Class vs. Object class - a template for building an object –defines the instance data that the object will hold –defines instance.
Today Enumerated Types - Summary. Start Nested Classes: Inner Classes, Local Classes, Anonymous Classes, Lambda Functions Next: Interfaces, Abstract Classes.
Java Generics.
Chapter 5: Enhancing Classes
Inheritance and Polymorphism
Packages, Interfaces & Exception Handling
CMPE212 – Stuff… Assn 3 due and Quiz 2 in the lab next week.
Nested class.
Comp 249 Programming Methodology
Interfaces and Inner Classes
CSC 205 Java Programming II
Inner Classes 11/14/ Dec-04 inner_classes.ppt.
Android Programming Lecture 2
Inheritance 2nd Lecture
More on Classes Classes may have constructors which are called when objects are created and destructors which are called when objects are destroyed. Classes.
Inner Classes 29-Nov-18.
Comp 249 Programming Methodology
Inheritance 2nd Lecture
CONSTRUCTORS AND DESRUCTORS
Interfaces and Inner Classes
Inheritance 2nd Lecture
CMSC 202 Inner Classes.
CISC124 Assignment 3 sample solution will be posted tonight after 7pm.
CMSC 202 Generics.
Outline Anatomy of a Class Encapsulation Anatomy of a Method
CMPE212 – Reminders Assignment 2 sample solution is posted.
Chapter 14 Abstract Classes and Interfaces
CMSC 202 Exceptions 2nd Lecture.
CPS120: Introduction to Computer Science
CMSC 202 Inheritance II.
Chapter 7 Inheritance.
Introduction to Computer Science and Object-Oriented Programming
Presentation transcript:

Inner Classes

Simple Uses of Inner Classes Inner classes are classes defined within other classes The class that includes the inner class is called the outer class There is no particular location where the definition of the inner class (or classes) must be place within the outer class Placing it first or last, however, will guarantee that it is easy to find 2

Simple Uses of Inner Classes An inner class definition is a member of the outer class in the same way that the instance variables and methods of the outer class are members An inner class is local to the outer class definition The name of an inner class may be reused for something else outside the outer class definition If the inner class is private, then the inner class cannot be accessed by name outside the definition of the outer class 3

Inner/Outer Classes public class Outer { private class Inner // inner class instance variables // inner class methods } // end of inner class definition // outer class instance variables // outer class methods } Aug 7, 2007

Simple Uses of Inner Classes There are two main advantages to inner classes They can make the outer class more self-contained since they are defined inside a class Both of their methods have access to each other's private methods and instance variables 5

Have Access to Each Other's Private Members Within the definition of a method of an inner class: It is legal to reference a private instance variable of the outer class It is legal to invoke a private method of the outer class Essentially, the inner class has a hidden reference to the outer class Within the definition of a method of the outer class It is legal to reference a private instance variable of the inner class on an object of the inner class It is legal to invoke a (nonstatic) method of the inner class as long as an object of the inner class is used as a calling object Within the definition of the inner or outer classes, the modifiers public and private are equivalent 6

Class with an Inner Class public class BankAccount{ private class Money{ private double amount; public Money(double amt){ amount = amt; } public double getAmount() { return amount; public void addIn (Money secondAmount) amount = amount + secondAmount.getAmount(); 7

Class with an Inner Class 8

Referring to a Method of the Outer Class If a method is invoked in an inner class If the inner class has no such method, then it is assumed to be an invocation of the method of that name in the outer class If both the inner and outer class have a method with the same name, then it is assumed to be an invocation of the method in the inner class If both the inner and outer class have a method with the same name, and the intent is to invoke the method in the outer class, then the following invocation must be used: OuterClassName.this.methodName() 9

Public Inner Classes If an inner class is marked public, then it can be used outside of the outer class In the case of a nonstatic inner class, it must be created using an object of the outer class BankAccount account = new BankAccount(); BankAccount.Money amount = account.new Money(41.99); Note that the prefix account. must come before new The new object amount can now invoke methods from the inner class, but only from the inner class 10

Public Inner Classes In the case of a static inner class, the procedure is similar to, but simpler than, that for nonstatic inner classes OuterClass.InnerClass innerObject = new OuterClass.InnerClass(); Note that all of the following are acceptable innerObject.nonstaticMethod(); innerObject.staticMethod(); OuterClass.InnerClass.staticMethod(); 11

Public Money Inner Class If the Money inner class in the BankAccount example was defined as public, we can create and use objects of type Money outside the BankAccount class. // this is okay in main( ) BankAccount account = new BankAccount( ); BankAccount.Money amt= account.new Money(41.99); System.out.println( amt.getAmount( ) ); // but NOT this – why not?? System.out.println( amt.getBalance( ) ); amt.getBalance( ) is illegal because getBalance( ) is a method of BankAccount, not Money

Static Inner Classes A normal inner class has a connection between its objects and the outer class object that created the inner class object This allows an inner class definition to reference an instance variable, or invoke a method of the outer class Static inner class has no connection to an object of the outer class, within a static inner class method Instance variables of the outer class cannot be referenced Nonstatic methods of the outer class cannot be invoked 13

Static Inner Classes To invoke a static method or to name a static variable of a static inner class within the outer class, preface each with the name of the inner class and a dot There are certain situations, when an inner class must be static If an object of the inner class is created within a static method of the outer class If the inner class must have static members 14

Multiple Inner Classes A class can have as many inner classes as it needs. Inner classes have access to each other’s private members as long as an object of the other inner class is used as the calling object.

The .class File for an Inner Class Compiling any class in Java produces a .class file named ClassName.class Compiling a class with one (or more) inner classes causes both (or more) classes to be compiled, and produces two (or more) .class files Such as ClassName.class and ClassName$InnerClassName.class 16

Nesting Inner Classes It is legal to nest inner classes within inner classes The rules are the same as before, but the names get longer Given class A, which has public inner class B, which has public inner class C, then the following is valid: A aObject = new A(); A.B bObject = aObject.new B(); A.B.C cObject = bObject.new C(); 17

Inner Classes and Inheritance Given an OuterClass that has an InnerClass Any DerivedClass of OuterClass will automatically have InnerClass as an inner class In this case, the DerivedClass cannot override the InnerClass An outer class can be a derived class An inner class can be a derived class also 18

Anonymous Classes Is an un-named inner class If an object is to be created, but there is no need to name the object's class, then an anonymous class definition can be used The class definition is embedded inside the expression with the new operator An anonymous class is an abbreviated notation for creating a simple local object within an expression, simply by wrapping the desired code in a "new" expression. 19

Anonymous Classes 20

Anonymous Classes 21