सीधे मुख्य सामग्री पर जाएं

#43 What is Parameterized Constructor in Java ? Parameterized Constructor क्या होता है ?

package com.sudhirtheindian2.java123;

public class ParaConstructor {
int x;
String y;

ParaConstructor(int a , String b){
x=a;
y=b;

// System.out.println(a+b);
}
void sum(){
System.out.println(x+y);
}


public static void main(String[] args) {
ParaConstructor pc = new ParaConstructor(4,"india");

pc.sum();
// What is parameterized constructor in java

// a constructor through which we can pass one or more
// parameters is called parameterized constructor

// syntax
// class A(){
// A(int a, String b){
//
// }
// }
}
}

टिप्पणियाँ

इस ब्लॉग से लोकप्रिय पोस्ट