Is it possible to create object with out its default
constructor? if possible how? else not possible? justify

Answers were Sorted based on User's Feedback



Is it possible to create object with out its default constructor? if possible how? else not possib..

Answer / dsr

with out default constructor we can't create the object.
suppose we can't write default constructor in the class.
JVM will be creating the default constructor for that class.

Is This Answer Correct ?    9 Yes 1 No

Is it possible to create object with out its default constructor? if possible how? else not possib..

Answer / vamsi

Yes, it is possible to create an object without its default
constructor. We can create a parametrized constructor or if
you have not created any thing then the compiler will
provide you with one default constructor.

Is This Answer Correct ?    2 Yes 0 No

Is it possible to create object with out its default constructor? if possible how? else not possib..

Answer / ravi

class C
{
void show()
{
System.out.println("hi");
}
public static void main(String args[])
{

C c=new C();
c.show();
}
}


we can create object if we don't write the constructor try
execute the above code and see the result; THANK u

Is This Answer Correct ?    1 Yes 0 No

Is it possible to create object with out its default constructor? if possible how? else not possib..

Answer / suresh royal

yes we can create object without using default constructor.
we can use argument constructor...
this is the example prg
===========================================
class ExArgCon
{
ExArgCon(int a)
{
System.out.println("arg constroctor");
}
public void m1()
{
System.out.println("m1() method");

}
public static void main(String[] args)
{
ExArgCone = new ExArgCon(10);
e.m1();
}
}

Is This Answer Correct ?    1 Yes 0 No

Is it possible to create object with out its default constructor? if possible how? else not possib..

Answer / sitaram

we can write the without constructor in the class. when
ever class will be loaded, JVM will be creating defalt
constructor for that class.

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More Core Java Interview Questions

What is a deadlock ?

5 Answers  


What are wrapped classes in java programming?

0 Answers  


How are java objects passed to a method and what are native methods?

0 Answers   Genpact,


What about features of local inner class?

0 Answers  


Given a singly linked list, how will you print out its contents in the reverse order? Can you do it with consuming any extra space?

0 Answers   Akamai Technologies,






What does this mean java?

0 Answers  


Why java is platform independent? Explain.

0 Answers  


what is webservices?

1 Answers   CTS, Ericsson, HCL,


Why we use set in java?

0 Answers  


Can you override static methods?

0 Answers  


What is data structure in java?

0 Answers  


what is the use of private constructor in core java?

3 Answers   OnMobile, Satyam, Yash Technologies,


Categories