Advertisements
Advertisements
प्रश्न
What is a parameterized constructor?
टिप्पणी लिखिए
उत्तर
Parameterized Constructor:
It is a constructor that accepts parameters. When an object is declared using a parameterized constructor, the initial values have to be passed as arguments to the constructor.
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Name the two types of constructors.
Write the output of the following program code:
char ch ;
int x=97;
do
{
ch=(char) x;
System.out.print(ch + “ ” );
if(x%10 == 0)
break;
++x;
}while(x<=100);
Consider the following program segment and answer the questions below:
class calculate
{
int a;double b;
calculate()
{
a=0;
b=0.0;
}
calculate(int x, double y)
{
a=x;
b=y;
}
void sum()
{
System.out.println(a*b);
}}
Name the type of constructors used in the above program segment.