SlideShare a Scribd company logo
1 of 30
Concepts of Classes, Objects
General Form of Class
class classname {
type instance-variable1;
//...
type instance-variableN;
static type variable1;
type methodname1(parameter-list) {
// body of method
}
// ...
type methodnameN(parameter-list){
// body of method
}
}
Declaring an Object
class Box{
double width;
double height;
double depth;
}
Representation 3: Assigning Object Reference Variables
Box b1 = new Box();
Box b2 = b1;
Representation 1:
Box mybox;
mybox=new Box();
Representation 2:
Box mybox=new
Box();
package packagename;
import statement;
class classname{
//instance variables;
//class or static
variables;
/*methods(parameters){
//local variables;
//object creation
//statements;
}*/
}
import java.util.Scanner;
class Demon{
int i;
static double d;
public static void main(String args[]){
char c=‘a’;
Demon obj=new Demon();
Scanner s=new Scanner(System.in);
d=s.nextDouble();
System.out.println(obj.i);
System.out.println(d);
System.out.println(c);
}
}
class classname{
//instance variables;
//class or static variables;
/*methods(parameters){
//local variables;
//statements;
}*/
}
class MainCLass{
public static void main(String args[])
{
//object creation
//invoking methods
//statements
}
}
class Test{
char c='a';
static float f;
void display(){
int i=10;
System.out.println("Test:display()");
System.out.println(“c value: “+c);
System.out.println(“i value: “+i);
System.out.println(“f value: “+f);
}
}
class Demo{
public static void main(String args[]){
Test t=new Test();
t.display();
System.out.println("Demo:main()");
}
}
Constructors and Methods
 A constructor is a special member function whose task is to initialize an
object immediately upon creation.
 The constructor is automatically called immediately after the object is
created.
 A constructor has the same name as the class in which it resides and is
syntactically similar to a method.
 If no constructor in program .System provides its own constructor called as
default constructor.
 Constructors doesn’t have any return type.
 A constructor which accepts parameters is called as parameterized constructor.
 Constructors can be overloaded.
Default Constructor:
 A constructor that accepts no parameters is called Default constructor.
 If not defined, provided by the compiler.
 The default constructor is called whenever an object is created without
specifying initial values.
Ex: class Box {
double width;
double height;
double depth;
Box() {
width = 10;
height = 10;
depth = 10;
}
}
// declare, allocate, and initialize Box objects
Box mybox1 = new Box();
class Test{
char c='a';
static float f;
Test(){
int i=10;
System.out.println("Test:Test()");
System.out.println(“c value: “+c);
System.out.println(“i value: “+i);
System.out.println(“f value: “+f);
}
}
class ConDemo{
public static void main(String args[]){
Test t=new Test();
//t.Test();
System.out.println(“ConDemo:main()");
}
}
class Test{
int x,y;
Test(int a, int b){
x=a;
y=b;
System.out.println(“x value: “+x);
System.out.println(“y value: “+y);
}
}
class PConDemo{
public static void main(String args[]){
Test t=new Test(10,20);
System.out.println(“PConDemo:main()");
}
}
//Parameterized Constructor
// Non parameterized Default Constructor
Methods
General Form:
type name(parameter-list) {
// body of method
}
 The type of data returned by a method must be
compatible with the return type specified by the
method.
 The variable receiving the value returned by a
method must also be compatible with the return type
specified for the method.
return value; //Here, value is the value returned.
Ex:
double volume(double w, double h, double d) {
return w*h*d;
class Box{
double width;
double height;
double depth;
Box(){
width=10;
height=10;
depth=10;
}
double volume(){
return width*height*depth;
}
}
class BoxDemo6{
public static void main(String args[]){
Box mybox1=new Box();
Box mybox2=new Box();
double vol;
vol=mybox1.volume();
System.out.println("Volume is: "+vol);
vol=mybox2.volume();
System.out.println("Volume is: "+vol);
}
}
Non parameterized or default Constructor
class Box{
double width;
double height;
double depth;
Box(double w,double h,double d){
width=w;
height=h;
depth=d;
}
double volume(){
return width*height*depth;
}
}
class BoxDemo7{
public static void main(String args[]){
Box mybox1=new Box(10,20,15);
Box mybox2=new Box(3,6,9);
double vol;
vol=mybox1.volume();
System.out.println("Volume is: "+vol);
vol=mybox2.volume();
System.out.println("Volume is: "+vol);
}
}
Parameterized Constructor
default :
 When no access specifier is used, then by default the
member of a class is public within its own package, but
cannot be accessed outside of its package.
private:
 A private member is accessible only to the class in which it
is defined.
 Use private keyword to create private members.
Access Control
public:
 Any class, in any package has access to a class's public
members.
 To declare a public member, use the keyword public.
protected:
 Allows the class itself, subclasses, and all classes in the same
package to access the members.
 To declare a protected member, use the keyword protected.
class Test {
int a; // default access
public int b; // public access
private int c; // private access
/*protected applies only
when inheritance is involved*/
// methods to access c
void setc(int i){
c = i; // set c's value
}
int getc() {
return c; // get c's value
}
}
class AccessTest {
public static void main(String args[]) {
Test ob = new Test();
// These are OK, a and b may be accessed directly
ob.a = 10;
ob.b = 20;
// This is not OK and will cause an error
//ob.c = 100; // Error!
// You must access c through its methods
ob.setc(100); // OK
System.out.println(ob.a + " " +ob.b + " " + ob.getc());
}
}
//Example for access control
Method & Constructor Overloading
 Defining two or more methods within the same class that share the
same name is called method overloading.
 Java uses the type and/or number of arguments to determine
which version of the overloaded method to call.
 Constructors can also be overloaded in the same way as method
overloading.
class OverloadDemo {
void test() {
System.out.println("No parameters");
}
void test(int a) {
System.out.println("a: " + a);
}
void test(int a, int b) {
System.out.println("a and b: " + a + " " + b);
}
double test(double a) {
System.out.println("double a: " + a);
return a*a;
}
}
class Overload {
public static void main(String args[]) {
OverloadDemo ob = new OverloadDemo();
double result;
ob.test();
ob.test(10);
ob.test(10, 20);
result = ob.test(123.25);
System.out.println("Result of ob.test(123.25): " + result);
} }
//method overloading
//Constructor Overloading
class CDemo{
int value1;
int value2;
CDemo(){
value1 = 10;
value2 = 20;
System.out.println("Inside 1st
Constructor");
}
CDemo(int a){
value1 = a;
System.out.println("Inside 2nd Constructor");
}
CDemo(int a,int b){
value1 = a;
value2 = b;
System.out.println("Inside 3rd Constructor");
}
public void display(){
System.out.println("Value1 === "+value1);
System.out.println("Value2 === "+value2);
}
public static void main(String args[]){
CDemo d1 = new CDemo();
CDemo d2 = new CDemo(30);
CDemo d3 = new CDemo(30,40);
d1.display();
d2.display();
d3.display();
}
}
this
 In java, it is illegal to declare two local variables with the same name inside
the same or enclosing scopes.
 But you can have formal parameters to methods, which overlap with the
names of the class’ instance variables.
 this keyword is used to refer to the current object.
 this can be used to resolve any name collisions that might occur between
instance variables and formal variables.
 When a formal variable has the same name as an instance variable, the formal
variable hides the instance variable.
 Also used in method chaining and constructor chaining.
// instance and formal variables are different
class Box{
double w=5,h=5,d=5;
Box(double w1,double h1,double d1){
w=w1;
h=h1;
d=d1;
}
double volume(){
return w*h*d;
}
}
class BoxTest1{
public static void main(String args[]){
Box b=new Box(1,2,3);
System.out.println("Volume is: "+b.volume());
}
}
Output:
Volume is:6.0
// instance and formal variables are same
class Box{
double w=5,h=5,d=5;
Box(double w,double h,double d){
w=w;
h=h;
d=d;
}
double volume(){
return w*h*d;
}
}
class BoxTest2{
public static void main(String args[]){
Box b=new Box(1,2,3);
System.out.println("Volume is: "+b.volume());
}
}
Output:
Volume is:125.0
//’this’ hides the instance variables
class Box{
double w=5,h=5,d=5;
Box(double w,double h,double d){
this.w=w;
this.h=h;
this.d=d;
}
double volume(){
return w*h*d;
}
}
class BoxTest2{
public static void main(String args[]){
Box b=new Box(1,2,3);
System.out.println("Volume is: "+b.volume());
}
}
Output:
Volume is:6.0
class Fchain{ // method chaining
int a,b;
Fchain setValue(int x,int y){
a=x;
b=y;
return this;
}
Fchain disp(){
System.out.println("a value is:"+a);
System.out.println("b value is:"+b);
return this;
}
}
class FchainDemo{
public static void main(String args[]){
Fchain f1=new Fchain();
f1.setValue(10,20).disp().setValue(11,22).disp();
}
}
//Constructor Chaining
class Test{
int a,b,c,d;
Test(int x,int y){
a=x;
b=y;
}
Test(int x,int y,int z){
this(x,y);
c=z;
}
Test(int p,int q,int r,int s){
this(p,q,r);
d=s;
}
void disp(){
System.out.println(a+” ”+b+” ”+c+” ”+d);
}
}
class TestDemo{
public static void main(String args[]){
Test t1=new Test(10,20,30,40);
t1.disp();
}
}
Parameter Passing
 The call-by-value copies the value of a actual parameter into
the formal parameter of the method.
 In this method, changes made to the formal parameter of the
method have no effect on the actual parameter.
 In call-by-reference, a reference to an actual parameter (not the
value of the argument) is passed to the formal parameter.
 In this method, changes made to the actual parameter will affect
the actual parameter used to call the method.
// Simple types are passed by value.
class Test {
void meth(int i, int j) {
i *= 2;
j /= 2;
}
}
class CallByValue {
public static void main(String args[]) {
Test ob = new Test();
int a = 15, b = 20;
System.out.println("a and b before call: " +a + " " + b);
ob.meth(a, b);
System.out.println("a and b after call: " +a + " " + b);
}
}
// Objects are passed by reference.
class Test {
int a, b;
Test(int i, int j) {
a = i;
b = j;
}
void meth(Test o) { // pass an object
o.a *= 2;
o.b /= 2;
}
}
class CallByRef {
public static void main(String args[]) {
Test ob = new Test(15, 20);
System.out.println("ob.a and ob.b before call: " +ob.a + " " + ob.b);
ob.meth(ob);
System.out.println("ob.a and ob.b after call: " +ob.a + " " + ob.b);
} }
class Box{ //call by reference
double width,height,depth;
Box(Box ob) {
width = ob.width;
height = ob.height;
depth = ob.depth;
}
Box(double w, double h, double d){
width = w;
height = h;
depth = d;
}
Box(){
width = -1;
height = -1;
depth = -1;
}
Box(double len) {
width = height = depth = len;
}
double volume() {
return width * height * depth;
}
}
class OverloadCons2 {
public static void main(String args[]) {
Box mybox1 = new Box(10, 20, 15);
Box mybox2 = new Box();
Box mycube = new Box(7);
Box myclone = new Box(mybox1);
double vol;
vol = mybox1.volume();
System.out.println("Volume of mybox1 is " + vol);
vol = mybox2.volume();
System.out.println("Volume of mybox2 is " + vol);
vol = mycube.volume();
System.out.println("Volume of cube is " + vol);
vol = myclone.volume();
System.out.println("Volume of clone is " + vol);
}
}
Recursion
Recursion is the process of defining something in
terms of itself.
A method that calls itself is said to be recursive.
class Factorial{
int fact(int n){
int result;
if(n==1)
return 1;
else
result = fact(n-1) * n;
return result;
}
}
class Recursion {
public static void main(String args[]) {
Factorial f = new Factorial();
System.out.println("Factorial of 3 is " + f.fact(3));
System.out.println("Factorial of 4 is " + f.fact(4));
System.out.println("Factorial of 5 is " + f.fact(5));
}
}

More Related Content

Similar to class object.pptx

UNIT_-II_2021R.pptx
UNIT_-II_2021R.pptxUNIT_-II_2021R.pptx
UNIT_-II_2021R.pptxRDeepa9
 
Keywords of java
Keywords of javaKeywords of java
Keywords of javaJani Harsh
 
LECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdf
LECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdfLECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdf
LECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdfShashikantSathe3
 
Class & Object - User Defined Method
Class & Object - User Defined MethodClass & Object - User Defined Method
Class & Object - User Defined MethodPRN USM
 
Java-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdf
Java-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdfJava-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdf
Java-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdfkakarthik685
 
Chap2 class,objects contd
Chap2 class,objects contdChap2 class,objects contd
Chap2 class,objects contdraksharao
 
6.INHERITANCE.ppt(MB).ppt .
6.INHERITANCE.ppt(MB).ppt                    .6.INHERITANCE.ppt(MB).ppt                    .
6.INHERITANCE.ppt(MB).ppt .happycocoman
 
JAVA Notes - All major concepts covered with examples
JAVA Notes - All major concepts covered with examplesJAVA Notes - All major concepts covered with examples
JAVA Notes - All major concepts covered with examplesSunil Kumar Gunasekaran
 
Classes, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaClasses, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaRadhika Talaviya
 

Similar to class object.pptx (20)

OOPs & Inheritance Notes
OOPs & Inheritance NotesOOPs & Inheritance Notes
OOPs & Inheritance Notes
 
UNIT_-II_2021R.pptx
UNIT_-II_2021R.pptxUNIT_-II_2021R.pptx
UNIT_-II_2021R.pptx
 
Keywords of java
Keywords of javaKeywords of java
Keywords of java
 
Inheritance
InheritanceInheritance
Inheritance
 
LECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdf
LECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdfLECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdf
LECTURE 2 MORE TYPES, METHODS, CONDITIONALS.pdf
 
Class & Object - User Defined Method
Class & Object - User Defined MethodClass & Object - User Defined Method
Class & Object - User Defined Method
 
Java unit2
Java unit2Java unit2
Java unit2
 
Chapter ii(oop)
Chapter ii(oop)Chapter ii(oop)
Chapter ii(oop)
 
Java Class Design
Java Class DesignJava Class Design
Java Class Design
 
Ppt on java basics
Ppt on java basicsPpt on java basics
Ppt on java basics
 
Java-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdf
Java-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdfJava-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdf
Java-Module 3-PPT-TPS.pdf.Java-Module 3-PPT-TPS.pdf
 
Chap2 class,objects contd
Chap2 class,objects contdChap2 class,objects contd
Chap2 class,objects contd
 
6.INHERITANCE.ppt(MB).ppt .
6.INHERITANCE.ppt(MB).ppt                    .6.INHERITANCE.ppt(MB).ppt                    .
6.INHERITANCE.ppt(MB).ppt .
 
Inheritance.pptx
Inheritance.pptxInheritance.pptx
Inheritance.pptx
 
JAVA Notes - All major concepts covered with examples
JAVA Notes - All major concepts covered with examplesJAVA Notes - All major concepts covered with examples
JAVA Notes - All major concepts covered with examples
 
Classes, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with JavaClasses, Objects and Method - Object Oriented Programming with Java
Classes, Objects and Method - Object Oriented Programming with Java
 
Java Reflection
Java ReflectionJava Reflection
Java Reflection
 
Second chapter-java
Second chapter-javaSecond chapter-java
Second chapter-java
 
Java Concepts
Java ConceptsJava Concepts
Java Concepts
 
Object and class
Object and classObject and class
Object and class
 

Recently uploaded

ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxleah joy valeriano
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 

Recently uploaded (20)

ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 

class object.pptx

  • 2. General Form of Class class classname { type instance-variable1; //... type instance-variableN; static type variable1; type methodname1(parameter-list) { // body of method } // ... type methodnameN(parameter-list){ // body of method } }
  • 3. Declaring an Object class Box{ double width; double height; double depth; } Representation 3: Assigning Object Reference Variables Box b1 = new Box(); Box b2 = b1; Representation 1: Box mybox; mybox=new Box(); Representation 2: Box mybox=new Box();
  • 4. package packagename; import statement; class classname{ //instance variables; //class or static variables; /*methods(parameters){ //local variables; //object creation //statements; }*/ } import java.util.Scanner; class Demon{ int i; static double d; public static void main(String args[]){ char c=‘a’; Demon obj=new Demon(); Scanner s=new Scanner(System.in); d=s.nextDouble(); System.out.println(obj.i); System.out.println(d); System.out.println(c); } }
  • 5. class classname{ //instance variables; //class or static variables; /*methods(parameters){ //local variables; //statements; }*/ } class MainCLass{ public static void main(String args[]) { //object creation //invoking methods //statements } } class Test{ char c='a'; static float f; void display(){ int i=10; System.out.println("Test:display()"); System.out.println(“c value: “+c); System.out.println(“i value: “+i); System.out.println(“f value: “+f); } } class Demo{ public static void main(String args[]){ Test t=new Test(); t.display(); System.out.println("Demo:main()"); } }
  • 7.  A constructor is a special member function whose task is to initialize an object immediately upon creation.  The constructor is automatically called immediately after the object is created.  A constructor has the same name as the class in which it resides and is syntactically similar to a method.  If no constructor in program .System provides its own constructor called as default constructor.  Constructors doesn’t have any return type.  A constructor which accepts parameters is called as parameterized constructor.  Constructors can be overloaded.
  • 8. Default Constructor:  A constructor that accepts no parameters is called Default constructor.  If not defined, provided by the compiler.  The default constructor is called whenever an object is created without specifying initial values. Ex: class Box { double width; double height; double depth; Box() { width = 10; height = 10; depth = 10; } } // declare, allocate, and initialize Box objects Box mybox1 = new Box();
  • 9. class Test{ char c='a'; static float f; Test(){ int i=10; System.out.println("Test:Test()"); System.out.println(“c value: “+c); System.out.println(“i value: “+i); System.out.println(“f value: “+f); } } class ConDemo{ public static void main(String args[]){ Test t=new Test(); //t.Test(); System.out.println(“ConDemo:main()"); } } class Test{ int x,y; Test(int a, int b){ x=a; y=b; System.out.println(“x value: “+x); System.out.println(“y value: “+y); } } class PConDemo{ public static void main(String args[]){ Test t=new Test(10,20); System.out.println(“PConDemo:main()"); } } //Parameterized Constructor // Non parameterized Default Constructor
  • 10. Methods General Form: type name(parameter-list) { // body of method }  The type of data returned by a method must be compatible with the return type specified by the method.  The variable receiving the value returned by a method must also be compatible with the return type specified for the method. return value; //Here, value is the value returned. Ex: double volume(double w, double h, double d) { return w*h*d;
  • 11. class Box{ double width; double height; double depth; Box(){ width=10; height=10; depth=10; } double volume(){ return width*height*depth; } } class BoxDemo6{ public static void main(String args[]){ Box mybox1=new Box(); Box mybox2=new Box(); double vol; vol=mybox1.volume(); System.out.println("Volume is: "+vol); vol=mybox2.volume(); System.out.println("Volume is: "+vol); } } Non parameterized or default Constructor
  • 12. class Box{ double width; double height; double depth; Box(double w,double h,double d){ width=w; height=h; depth=d; } double volume(){ return width*height*depth; } } class BoxDemo7{ public static void main(String args[]){ Box mybox1=new Box(10,20,15); Box mybox2=new Box(3,6,9); double vol; vol=mybox1.volume(); System.out.println("Volume is: "+vol); vol=mybox2.volume(); System.out.println("Volume is: "+vol); } } Parameterized Constructor
  • 13. default :  When no access specifier is used, then by default the member of a class is public within its own package, but cannot be accessed outside of its package. private:  A private member is accessible only to the class in which it is defined.  Use private keyword to create private members. Access Control
  • 14. public:  Any class, in any package has access to a class's public members.  To declare a public member, use the keyword public. protected:  Allows the class itself, subclasses, and all classes in the same package to access the members.  To declare a protected member, use the keyword protected.
  • 15. class Test { int a; // default access public int b; // public access private int c; // private access /*protected applies only when inheritance is involved*/ // methods to access c void setc(int i){ c = i; // set c's value } int getc() { return c; // get c's value } } class AccessTest { public static void main(String args[]) { Test ob = new Test(); // These are OK, a and b may be accessed directly ob.a = 10; ob.b = 20; // This is not OK and will cause an error //ob.c = 100; // Error! // You must access c through its methods ob.setc(100); // OK System.out.println(ob.a + " " +ob.b + " " + ob.getc()); } } //Example for access control
  • 16. Method & Constructor Overloading  Defining two or more methods within the same class that share the same name is called method overloading.  Java uses the type and/or number of arguments to determine which version of the overloaded method to call.  Constructors can also be overloaded in the same way as method overloading.
  • 17. class OverloadDemo { void test() { System.out.println("No parameters"); } void test(int a) { System.out.println("a: " + a); } void test(int a, int b) { System.out.println("a and b: " + a + " " + b); } double test(double a) { System.out.println("double a: " + a); return a*a; } } class Overload { public static void main(String args[]) { OverloadDemo ob = new OverloadDemo(); double result; ob.test(); ob.test(10); ob.test(10, 20); result = ob.test(123.25); System.out.println("Result of ob.test(123.25): " + result); } } //method overloading
  • 18. //Constructor Overloading class CDemo{ int value1; int value2; CDemo(){ value1 = 10; value2 = 20; System.out.println("Inside 1st Constructor"); } CDemo(int a){ value1 = a; System.out.println("Inside 2nd Constructor"); } CDemo(int a,int b){ value1 = a; value2 = b; System.out.println("Inside 3rd Constructor"); } public void display(){ System.out.println("Value1 === "+value1); System.out.println("Value2 === "+value2); } public static void main(String args[]){ CDemo d1 = new CDemo(); CDemo d2 = new CDemo(30); CDemo d3 = new CDemo(30,40); d1.display(); d2.display(); d3.display(); } }
  • 19. this  In java, it is illegal to declare two local variables with the same name inside the same or enclosing scopes.  But you can have formal parameters to methods, which overlap with the names of the class’ instance variables.  this keyword is used to refer to the current object.  this can be used to resolve any name collisions that might occur between instance variables and formal variables.  When a formal variable has the same name as an instance variable, the formal variable hides the instance variable.  Also used in method chaining and constructor chaining.
  • 20. // instance and formal variables are different class Box{ double w=5,h=5,d=5; Box(double w1,double h1,double d1){ w=w1; h=h1; d=d1; } double volume(){ return w*h*d; } } class BoxTest1{ public static void main(String args[]){ Box b=new Box(1,2,3); System.out.println("Volume is: "+b.volume()); } } Output: Volume is:6.0
  • 21. // instance and formal variables are same class Box{ double w=5,h=5,d=5; Box(double w,double h,double d){ w=w; h=h; d=d; } double volume(){ return w*h*d; } } class BoxTest2{ public static void main(String args[]){ Box b=new Box(1,2,3); System.out.println("Volume is: "+b.volume()); } } Output: Volume is:125.0
  • 22. //’this’ hides the instance variables class Box{ double w=5,h=5,d=5; Box(double w,double h,double d){ this.w=w; this.h=h; this.d=d; } double volume(){ return w*h*d; } } class BoxTest2{ public static void main(String args[]){ Box b=new Box(1,2,3); System.out.println("Volume is: "+b.volume()); } } Output: Volume is:6.0
  • 23. class Fchain{ // method chaining int a,b; Fchain setValue(int x,int y){ a=x; b=y; return this; } Fchain disp(){ System.out.println("a value is:"+a); System.out.println("b value is:"+b); return this; } } class FchainDemo{ public static void main(String args[]){ Fchain f1=new Fchain(); f1.setValue(10,20).disp().setValue(11,22).disp(); } }
  • 24. //Constructor Chaining class Test{ int a,b,c,d; Test(int x,int y){ a=x; b=y; } Test(int x,int y,int z){ this(x,y); c=z; } Test(int p,int q,int r,int s){ this(p,q,r); d=s; } void disp(){ System.out.println(a+” ”+b+” ”+c+” ”+d); } } class TestDemo{ public static void main(String args[]){ Test t1=new Test(10,20,30,40); t1.disp(); } }
  • 25. Parameter Passing  The call-by-value copies the value of a actual parameter into the formal parameter of the method.  In this method, changes made to the formal parameter of the method have no effect on the actual parameter.  In call-by-reference, a reference to an actual parameter (not the value of the argument) is passed to the formal parameter.  In this method, changes made to the actual parameter will affect the actual parameter used to call the method.
  • 26. // Simple types are passed by value. class Test { void meth(int i, int j) { i *= 2; j /= 2; } } class CallByValue { public static void main(String args[]) { Test ob = new Test(); int a = 15, b = 20; System.out.println("a and b before call: " +a + " " + b); ob.meth(a, b); System.out.println("a and b after call: " +a + " " + b); } }
  • 27. // Objects are passed by reference. class Test { int a, b; Test(int i, int j) { a = i; b = j; } void meth(Test o) { // pass an object o.a *= 2; o.b /= 2; } } class CallByRef { public static void main(String args[]) { Test ob = new Test(15, 20); System.out.println("ob.a and ob.b before call: " +ob.a + " " + ob.b); ob.meth(ob); System.out.println("ob.a and ob.b after call: " +ob.a + " " + ob.b); } }
  • 28. class Box{ //call by reference double width,height,depth; Box(Box ob) { width = ob.width; height = ob.height; depth = ob.depth; } Box(double w, double h, double d){ width = w; height = h; depth = d; } Box(){ width = -1; height = -1; depth = -1; } Box(double len) { width = height = depth = len; } double volume() { return width * height * depth; } } class OverloadCons2 { public static void main(String args[]) { Box mybox1 = new Box(10, 20, 15); Box mybox2 = new Box(); Box mycube = new Box(7); Box myclone = new Box(mybox1); double vol; vol = mybox1.volume(); System.out.println("Volume of mybox1 is " + vol); vol = mybox2.volume(); System.out.println("Volume of mybox2 is " + vol); vol = mycube.volume(); System.out.println("Volume of cube is " + vol); vol = myclone.volume(); System.out.println("Volume of clone is " + vol); } }
  • 29. Recursion Recursion is the process of defining something in terms of itself. A method that calls itself is said to be recursive.
  • 30. class Factorial{ int fact(int n){ int result; if(n==1) return 1; else result = fact(n-1) * n; return result; } } class Recursion { public static void main(String args[]) { Factorial f = new Factorial(); System.out.println("Factorial of 3 is " + f.fact(3)); System.out.println("Factorial of 4 is " + f.fact(4)); System.out.println("Factorial of 5 is " + f.fact(5)); } }