0% found this document useful (0 votes)
29 views

Method Overloading Contd

The document discusses method overloading and constructor overloading in Java. It provides examples of classes with overloaded methods and constructors. It also provides examples of using overloaded constructors to initialize new objects, including initializing one object using another object. Finally, it provides an example of implementing bubble sort to sort an array of integers.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views

Method Overloading Contd

The document discusses method overloading and constructor overloading in Java. It provides examples of classes with overloaded methods and constructors. It also provides examples of using overloaded constructors to initialize new objects, including initializing one object using another object. Finally, it provides an example of implementing bubble sort to sort an array of integers.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

Method overloading contd

class OverloadDemo {
public static void main(String args[]) {
Overload ob = new Overload();
int resI;
double resD;

// call all versions of ovlDemo()


ob.ovlDemo();
System.out.println();

ob.ovlDemo(2);
System.out.println();

resI = ob.ovlDemo(4, 6);


System.out.println("Result of ob.ovlDemo(4, 6): " + resI);
System.out.println();

resD = ob.ovlDemo(1.1, 2.32);


System.out.println("Result of ob.ovlDemo(1.1, 2.2): " + resD);
}
}
Overload constructor
// Demonstrate an overloaded constructor.
class MyClass {
int x;

MyClass() {
System.out.println("Inside MyClass().");
x = 0;
}

MyClass(int i) {
System.out.println("Inside MyClass(int).");
x = i;
}

MyClass(double d) {
System.out.println("Inside MyClass(double).");
x = (int) d;
}

MyClass(int i, int j) {
System.out.println("Inside MyClass(int, int).");
x = i * j;
}
}
Overload constructor contd.
class OverloadConsDemo {
public static void main(String args[]) {
MyClass t1 = new MyClass();
MyClass t2 = new MyClass(88);
MyClass t3 = new MyClass(17.23);
MyClass t4 = new MyClass(2, 4);

System.out.println("t1.x: " + t1.x);


System.out.println("t2.x: " + t2.x);
System.out.println("t3.x: " + t3.x);
System.out.println("t4.x: " + t4.x);
}
}
example
// Initialize one object with another.
class Summation {
int sum;

// Construct from an int.


Summation(int num) {
sum = 0;
for(int i=1; i <= num; i++)
sum += i;
}

// Construct from another object.


Summation(Summation ob) {
sum = ob.sum;
}
}

class SumDemo {
public static void main(String args[]) {
Summation s1 = new Summation(5);
Summation s2 = new Summation(s1);

System.out.println("s1.sum: " + s1.sum);


System.out.println("s2.sum: " + s2.sum);
}
}
Bubble sort
class bubblesort {
public static void main(String args[]) {
int nums[] = { 99, -10, 100123, 18, -978,
5623, 463, -9, 287, 49 };
int a, b, t;
int size;

size = 10; // number of elements to sort

// display original array


System.out.print("Original array is:");
for(int i=0; i < size; i++)
System.out.print(" " + nums[i]);
System.out.println();
// This is the bubble sort.
for(a=1; a < size; a++)
for(b=size-1; b >= a; b--) {
if(nums[b-1] > nums[b]) { // if out of order
// exchange elements
t = nums[b-1];
nums[b-1] = nums[b];
nums[b] = t;
}
}

// display sorted array


System.out.print("Sorted array is:");
for(int i=0; i < size; i++)
System.out.print(" " + nums[i]);
System.out.println();
}
}

You might also like