Lec 5

25
BITS Pilani, Pilani Campus BITS Pilani Pilani Campus Dr. Yashvardhan Sharma CSIS Dept., BITS-Pilani IS F213 Object Oriented Programming

description

 

Transcript of Lec 5

Page 1: Lec 5

BITS Pilani, Pilani Campus

BITS PilaniPilani Campus

Dr. Yashvardhan SharmaCSIS Dept., BITS-Pilani

IS F213 Object Oriented Programming

Page 2: Lec 5

BITS Pilani, Pilani Campus

DEFINING A CLASS

SYNTAX

<scope> [<final>/<abstract>] [static>] class <classname>

[extends <classname>] [implements <interfacename 1> …….<interface n>]

{

Member Variable declarations /Instance field declarations;

Member Method Definitions;

}

Class Body

<scope> : 1. package private or public for outer classes2. private , public , protected, package private for inner classes

<final> : class definition is final and can not be extended by sub classes. final class can not have sub classes

<static> : static keyword can only be applied for inner classes. Outer classes can not be static.

<abstract> : abstract keyword specifies that class is abstract.

Page 3: Lec 5

BITS Pilani, Pilani Campus

Instance Variable Declaration Syntax <scope> [<final>] [<static>] <type> variable name = [value];

where

<scope> can be private, public, protected or by default friendly

<type > can be any primitive type or class type or interface type;

Method Declaration Syntax<scope> [<final>][<static> ][<synchronized>] [abstract]

<return type> methodname( argument list ) [throws exceptiontype1..exceptiontype n]

{

….. Method Body……

}

Where

<scope> can be private, public, protected or by default friendly<return type > can be any primitive type or class type or interface type;

Note :

Default Access is always friendly. i.e. inside the package

Page 4: Lec 5

BITS Pilani, Pilani Campus

Visibility of fields

Access Modifiers

Access Location

public protected Friendly

[package private]

private

Same Class Yes Yes Yes Yes

sub classes in same package

Yes Yes Yes No

Other Classes inSame package

Yes Yes Yes No

Subclasses in other packages

Yes Yes No No

Non-subclasses in other packages

Yes No No No

Page 5: Lec 5

BITS Pilani, Pilani Campus

Class Examples

1.

class xyz

{ …….. } // class is defined with friendly access

2.

public class abc

{ ……...} // class is defined with public access.

Note :

•public classes should be written in the same file as name of class.

•public class abc should be written in file named abc.java.

•In a single source file only one class can be named with public access.

3. final class xyz

{ …………}

final class means you can not create sub classes of the final class.

class abc extends xyz

{ ……….} is wrong.

Page 6: Lec 5

BITS Pilani, Pilani Campus

Class Examples

4.

abstract class xyz

{ …….. } // class is defined with friendly access

(i) abstract classes needs to be subclassed.

(ii) You can not create instances of abstract classes.

xyz x1 = new xyz(); -------- Wrong Statement.

abstract class abc

{

int a =10;

float b = 20;

abstract void show() ; // abstract method

}

Page 7: Lec 5

BITS Pilani, Pilani Campus

Exercise 1

Define a class which encapsulates a point in 2 – dimensional space. It has following members X & Y coordinate values.

It supports following operations(i) Individual operation for setting the values for X and

Y coordinates(ii) Computing the distance between two points(iii) Checking two points for equality [ Two points are

equal if they have same values for X and Y coordinates]

(iv) Method for translating the values for X and Y

Page 8: Lec 5

BITS Pilani, Pilani Campus

UML Representation for Class Point

Point

x: doubley: double

+getX() : double+getY() : double+setX(x: double) : void+setY(y: double) : void+equals(other : Point) : boolean+computeDistance(other : Point) : double+show() : void

class Point{double x; // x – coordinatedouble y; // y –coordinate

public double getX() { return x; }public double getY() { return y; } public void setX(double x) { this.x = x; }public void setY(double y) { this.y = y; }public boolean equals(Point other){return this.x == other. x && this.y == other.y ;} public double computeDistance(Point other){double a = (this.y – other.y) * (this.y – other.y);double b = this.x – other.x) * (this.x – other.x);return Math.sqrt(a+b); }

public void show(){S.O.P(“ x= “+x);S.O.P(“ y= “+y);}} End of Point Class

Attributes

Operations

Page 9: Lec 5

BITS Pilani, Pilani Campus

Class PointTest

class PointTest{public static void main(String args[ ]){Point P1 = new Point();P1.show();Point P2 = P1;P2.show();System.out.println(P1.equals(P2));System.out.println(P1.computeDistance(P2));}// End of main() Method}// End of PointTest

Page 10: Lec 5

BITS Pilani, Pilani Campus

How to Create an Instance of a class

(Creating Objects)

Objects are always created/constructed/instantiated dynamically using new opeartor.

Syntax :<ClassName> <object reference> = new ConstructorMethod(<parameters>);

Constructor Method Method having same name as name of class

Examples :

BOX b1 = new BOX(); // Valid iff constructor is unparametrized

BOX b2 = new BOX(10,6,8); // Valid iff constructor is parametrized

Page 11: Lec 5

BITS Pilani, Pilani Campus

Object Creation Examples

BOX b1 = new BOX();

BOX b2 = b1;

b2

b2 is just another reference for the same object

b1

BOXl b h

ONLY ONE OBJECT IS CREATED IN ABOVE STATEMENTS

Page 12: Lec 5

BITS Pilani, Pilani Campus

How to Access Class members1. Private members of a class are only visible inside class body.2. Protected members have package scope and are accessible to

subclasses in other packages as well.3. private protected members are only accessible to subclasses in same

package or other package. [Does not have Package Scope]4. public fields/methods are accessible from every where.5. Every access to public or friendly access fields of class is only through

objects of that class. (Except static fields which are accessible through class name)

Syntax. <object_reference>.<member_field> ; <object_reference>.<methodname(parameter_list)>;

Page 13: Lec 5

BITS Pilani, Pilani Campus

class Rectangle{int length;int width;void setData(int l,int w){length = l;width = w;}void printSides(){System.out.println("Length is:"+length);System.out.println("Width is:"+width);}int area() { return length * width ;}} // End of class

class RectangleTest{public static void main(String args[]){Rectangle r1 = new Rectangle();r1.setData(10,8);r1.printSides();System.out.println("Area ="+r1.area());Rectangle r2 = new Rectangle();r1.setData(100,80);r1.printSides();System.out.println("Area ="+r2.area());}} // End of class

/* OutputE:\New Folder\Java>java RectangleTestLength is:10Width is:8Area =80Length is:100Width is:80Area =0*/

Example

Page 14: Lec 5

BITS Pilani, Pilani Campus

class Rectangle{int length;int width;void setData(int l,int w){length = l;width = w;}void printSides(){System.out.println("Length is:"+length);System.out.println("Width is:"+width);}int area() { return length * width ;}}

class RectangleTest{public static void main(String args[]){Rectangle r1 = new Rectangle();r1.printSides();r1.setData(10,8);System.out.println("Area ="+r1.area());Rectangle r2 = new Rectangle();r2.printSides();r1.setData(100,80);System.out.println("Area ="+r2.area());}}

/*E:\New Folder\Java>java RectangleTestLength is:0Width is:0Area =80Length is:0Width is:0Area =0*/

Page 15: Lec 5

BITS Pilani, Pilani Campus

Constructors

1. If a class has any method with the same name as its class then it is constructor method for that class

2. Used to initialize the objects upon creation

3. In the absence of constructor method we have to specifically add a method for object initialization

4. If no constructor is defined for the class then a default constructor is provided by Java run time environment (Without Parameters).

5. Constructor method has no return type not even void.

6. Code written inside constructor method is automatically executed for every object creation of that class.

Page 16: Lec 5

BITS Pilani, Pilani Campus

Types of Constructors

1. Unparametrized Constructor2. Parametrized Constructor3. Overloaded Constructor

Page 17: Lec 5

BITS Pilani, Pilani Campus

Unparametrized Constructor

• If a class does not supply any constructor then JRE supplies a default constructor with no parameters

• Class can have its own constructor of any types.

• If a class supplies its own constructor then default constructor becomes hidden.

Page 18: Lec 5

BITS Pilani, Pilani Campus

Class With No Constructor

class XYZ{double a,b;void setData(double x, double y){a = x;b = y;}void print(){System.out.println("a="+a);System.out.println("b="+b);}}

class XYZTEST{public static void main(String args[]){XYZ xyz = new XYZ();xyz.print();}}

D:\Java1>java XYZTESTa=0.0b=0.0

Page 19: Lec 5

BITS Pilani, Pilani Campus

Class With Constructor

class XYZ{double a,b;XYZ(){S.O.P(“Object XYZ created”);}}

class XYZTEST{public static void main(String args[]){XYZ xyz = new XYZ();}}

D:\Java1>java XYZTESTObject XYZ created

Class with Unparametrized Constructor

Page 20: Lec 5

BITS Pilani, Pilani Campus

class XYZ{double a,b;XYZ(double a, double b){this.a = a;this.b = b;print();}void print(){System.out.println("a="+a);System.out.println("b="+b);}}

class XYZTEST{public static void main(String args[]){// XYZ xyz = new XYZ(); WrongXYZ xyz = new XYZ(10.8,6.5);xyz.print();}}

D:\Java1>java XYZTESTa=10.8b=6.5a=10.8b=6.5

Class with Parametrized Constructor

Page 21: Lec 5

BITS Pilani, Pilani Campus

class XYZ{double a,b;XYZ(){a = 10;b = 8;print();} XYZ(double a, double b){this.a = a;this.b = b;print();}void print(){System.out.println("a="+a);System.out.println("b="+b);}}

class XYZTEST{public static void main(String args[]){XYZ x1 = new XYZ(); XYZ x2 = new XYZ(10.8,6.5);x1.print();x2.print();}}

D:\Java1>java XYZTESTa=10.0b=8.0a=10.8b=6.5a=10.0b=8.0a=10.8b=6.5

Class with Overloaded Constructor

Page 22: Lec 5

BITS Pilani, Pilani Campus

Constructor Examples(Parametrized Constructor)• class Triangle• {• double side1,side2,side3;• Triangle(double side1,double side2,double side3)• {• this.side1 = side1;• this.side2 = side2; • this.side3 = side3;• System.out.println ("Triangle Created with sides :"+side1 +" " +side2+ " "+side3);• }• }

class TriangleTest{public static void main(String args[]){// Triangle t1 = new Triangle(); This Line will give compile time error Triangle t1 = new Triangle(10.56,4.56,3.45); Triangle t2 = new Triangle(10,4,9); Triangle t3 = new Triangle(1,4,3);}}

Page 23: Lec 5

BITS Pilani, Pilani Campus

/* Out PutE:\New Folder\Java>javac TriangleTest.java

E:\New Folder\Java>java TriangleTestTriangle Created with sides :10.56 4.56 3.45Triangle Created with sides :10.0 4.0 9.0Triangle Created with sides :1.0 4.0 3.0*/

Page 24: Lec 5

BITS Pilani, Pilani Campus

Overloaded Constructors• class Triangle• {• double side1,side2,side3;• Triangle(double side)• {• side1= side2 = side3 = side;• System.out.println("Equilateral Triangle Created with sides :"+side);• }• Triangle(double side1,double side2)• {• this.side1 = side1; this.side2 = this.side3 = side2;• System.out.println("Isoceles Triangle Created with sides :"+side1 +" " +side2);• }• Triangle(double side1,double side2,double side3)• {• this.side1 = side1; this.side2 = side2; this.side3 = side3;• System.out.println("Triangle Created with sides :"+side1 +" " +side2+ " "+side3);• }• }

Page 25: Lec 5

BITS Pilani, Pilani Campus

class TriangleTest{public static void main(String args[]){ Triangle t1 = new Triangle(10.56,4.56,3.45); Triangle t2 = new Triangle(10,4); Triangle t3 = new Triangle(13);}}

/* OutputE:\New Folder\Java>java TriangleTestTriangle Created with sides :10.56 4.56 3.45Isoceles Triangle Created with sides :10.0 4.0Equilateral Triangle Created with sides :13.0*/