FOR EXAMPLE : CLASS Dotnet { }
creating object: Dotnet dn=new Dotnet();
NOW THE QUESTION IS WHICH IS CALLED AS OBJECT ?EITHER dn OR
new Dotnet() and CAN YOU PROVE YOUR ANSWER?????PLEASE REPLY...
Answer Posted / pavan7
new Dotnet(); is the object,and dn is the reference to that
object.Because,
i)
you know that REFERENCE TYPES are stored in MANAGED HEAP SO
new Dotnet(); is stored in MANAGED HEAP BUT dn is stored on
STACK MEMORY AREA.
ii)
AND,until and unless we use new keyword there is no any memory
allocation.so anything that associated with new keyword is
called as an OBJECT
WHAT WILL YOU SAY???????????
PLEASE COMMENT...........
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is delegate in c# interview questions?
What are some examples of desktop applications?
What are the namespace level elements?
What is hierarchical inheritance in c#?
What are the 2 types of data types available in c#?
Is overriding of a function possible in the same class?
What are some of the commonly used commands in sqlcommand?
What is session variable in c#?
What is a value type in c#?
What can be done with c#?
What is sqladapter c#?
What is the boxing and unboxing in c#?
What is javascriptserializer c#?
What is wpf c#?
Why do we need reflection in c#?