Sie sind auf Seite 1von 11

CLASSES And OBJECTS

Presented By : Ajay Sharma 601003001

CLASSES
The class is at the core of Java. Any concept you wish to implement in a Java program must be encapsulated within a class. A class is the template or blueprint from which objects are actually made. A class is declared by use of the class keyword

General Form Of CLASS


The general form of a class definition is shown here: class classname {

accesstype datatype instance-variable1;

acesstype datatype instance-variable2; accesstype datatype instance-variableN; accesstype returntype methodname1(parameter-list) { // body of method } accesstype returntype methodname2(parameter-list) { //body of method } // accesstype returntype methodnameN(parameter-list) { // body of method } }

Instance Variable And Methods


The data, or variables, defined within a class are called instance variables. They are called so because each instance of the class (that is, each object of the class) contains its own copy of these variables. All methods have the same general form as main( ). However, most methods will not be specified as static or public. Java classes do not need to have a main( ) method. You only specify one if that class is the starting point for your program. Example applets don't require a main( ) method at all.

CLASS Member Access

Example of Class.

class Box { double width,height ,depth; void volume() { System.out.print("Volume is "); System.out.println(width * height * depth); } } class BoxDemo3 { public static void main(String args[]) { Box mybox1 = new Box(); Box mybox2 = new Box(); // assign values to mybox1's instance variables mybox1.width = 10; mybox1.height = 20; mybox1.depth = 15; /* assign different values to mybox2's instance variables */ mybox2.width = 3; mybox2.height = 6; mybox2.depth = 9; // display volume of first box mybox1.volume(); // display volume of second box mybox2.volume();
}

Objects
Are the instance of the class. Created Using Classname objname = new Classname(); example: Box mybox1 = new Box();

Objects Cont..

Here, objname is a variable of the class type being created. The classname is the name of the class that is being instantiated. The class name followed by parentheses specifies the constructor for the class. A constructor defines what occurs when an object of a class is created. Constructors are an important part of all classes and have many significant attributes. Most real-world classes explicitly define their own constructors within their class definition. However, if no explicit constructor is specified, then Java will automatically supply a default constructor.

Constructors
A constructor creates an Object of the class that it is in by initializing all the instance variables and creating a place in memory to hold the Object. It is always used with the keyword new and then the Class name. It has the same name as the class in which it resides. Once defined, the constructor is automatically called immediately after the object is created, before the new operator completes. Constructors look a little strange because they have no return type, not even void. This is because the implicit return type of a class' constructor is the class type itself. It is the constructor's job to initialize the internal state of an object so that the code creating an instance will have a fully initialized, usable object immediately.

THIS Keyword
Sometimes a method will need to refer to the object that invoked it. this can be used inside any method to refer to the current object. That is, this is always a reference to the object on which the method was invoked. This can also be use to call the constructor.

THIS example
public class constr { int top; constr() { this(-1);

} public static void main(String[] args) { constr o=new constr(); constr o1=new constr(0); System.out.println(o.top); System.out.println(o1.top); } }

constr(int top){ this.top=top; }

Das könnte Ihnen auch gefallen