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...
Answers were Sorted based on User's Feedback
Answer / bakku pavan kumar
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 ? | 20 Yes | 0 No |
Answer / satya
in Dotnet dn=new Dotnet(); here Dotnet dn creates a
reference variable(LHS) and new Dotnet(); creates an object.
Is This Answer Correct ? | 1 Yes | 0 No |
How will you get the different language strings?
How can you sort the elements of the array in descending order?
1 Answers Junosource, Siebel Systems, Wipro,
What do you mean by synchronous and asynchronous operations?
What is the difference between int.Parse() and Convert.toInt32().
Which of the following API is used to hide a window?
What is difference between struct and class in c#?
What does Dispose method do with the connection object?
What is an escape sequence in c#?
How do you declare a variable in c#?
Are tuples immutable c#?
What are classes in c#?
what is read only and constant