Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created constructor_overloading.java #739

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions Java/constructor_overloading.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// program of constructor overloading
// constructors can be defined by three types in case of passing arguments 1) parameterized 2) non parameterized 3) default
class overload{
int a;
int b;
float c;
public overload(){ // non parameterized constructor
a=0;
b=0;c=0;
System.out.println("the values are :" +a+ "," +b+ "," +c);
}
public overload(int x) {// parameterized constructor
a=x;
b=0;c=0;
System.out.println(" after given one parameter, values are :" +a+ "," +b+"," +c);
}
public overload(int x, int y, float z){
a=x;
b=y;
c=z;
System.out.println(" final values are :" +a+ "," +b+"," +c);
}
public static void main(String[]args){
overload obj1= new overload();
overload obj2= new overload(4);
overload obj3= new overload( 3,5,7);

}
}
/*default construtor..
public class constructor{
int num;
public constructor(){
num=0; // default constructor
}
public constructor(int value){
num= value;
}
public static void main(String[]args){
constructor obj1= new constructor();
constructor obj2= new constructor();
}
}
*/