Can we create instance for Abstract class?
Answers were Sorted based on User's Feedback
Answer / pankaj nayal
@Ahmadjad
we can implement multiple inheritence through interface....
if you want to say some other thing just let us know...!!
public class a extends b implements c
{
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rahul gupta
no,
we can not create instance of abstract class because we can
inherit abstract base class by its derived class .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sonia bandooni
CREATE A ABSTRACT CLASS USING ABSTRACT KEY
WE CAN CREATE INSTANCE OF ABSTRACT CLASS IN C# .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anand kumar dwivedi (bholu)
we can't create instance for an abstract class directly, but
with the help of DYNAMIC BINDING(in this case we can put the
ref. of parent class) we can create the object of abstract
class.
an example;
abstract class Temp
{
abstract void show();
void display()
{
System.out.println("possible to create");
}
}
class TestTemp extends Temp
{
void show()
{
System.out.println("we are providing body for abstract method");
}
public static void main(String[] args)
{
Temp temp = new TestTemp();
temp.show();
temp.display();
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / praveenbabu
I can create instance for abstract class.. :) if u want
answer mail me to praveenbabu.it2009@gmail.com :)
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / mohammed rafi
Its not possible to create a object for Abstract Class,
in that class atleast one method should be Abstract which
means dont have defination,if there is no defination its un-
complete class, when class is having all exiting methods
definations then only we can create the object.
Thumb role is abstract class incomplete class, we can
create object where class is completed.
| Is This Answer Correct ? | 2 Yes | 4 No |
Answer / deepak bankar
we can create instance for abstract class .
But we can not use this object
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / narasimha
Hello friends,
I have faced two questions plz let me know the asnswer for
this q---
1. why not create for the instance for abstract classan
what is the reasons for that.
2. wht not support the java,.net multiple inhiritece.what
is the reasons for that.
| Is This Answer Correct ? | 4 Yes | 14 No |
what are the differences between a class and structure
What is Interface Polymorphism?with E.g
What is event and delegates in c#?
In gridview in editmode if we want to display information in one combobox based on
Explain about accessibility modifier 'protected internal'?
Why do we need serialization?
How many dimensions can an array have?
In .NET how can you solve the DLL Hell problem?
What are the valid parameter types we can pass in an Indexer ?
Explain how can you clean up objects holding resources from within the code?
Is it possible to have a static indexer in c#?
Who benefits from ajax?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)