object a = new Dog();
vs
Dog a = new Dog();
In both cases a.GetType() gives Dog.
Both invoke same constructor (with same hierarchy).
Then can you please tell me the difference between these two statements?
vs
In both cases Then can you please tell me the difference between these two statements? |
||||
|
Both create a Dog object. Only the second allows you to directly invoke Dog methods or to otherwise treat it like a dog, such as if you need to pass the object to a method as a parameter of type
|
|||||||||||||
|
|
The difference is that a When you have a |
|||||||
|
|
Your first line creates a variable of type The compiler won't let you treat that as a |
|||||||
|
|
Both statements contain a declaration and a constructor invocation. The invocations of the constructor are identical, therefore you get a |
|||
|
|
|
Both statements involve calling the default constructor of However, the statements also have another part: the declaration of a variable (this is the part of the statement before the equals). In statically typed languages such as C#, every variable -- more generally, any expression -- has a static type:
The compiler will not allow you to assign a value to a variable that it cannot prove is of the variable's static type, e.g. it would not allow
Since all reference types implicitly derive from Then there's also the runtime type of each variable (expression), which I mentioned above. This is the same in both cases, because after all in both cases we have created a It should be obvious that the runtime type is something that you cannot do without¹; everything has to "be" something after all. But why bother with inventing the notion of static type? You can think of static types as a contract between you (the programmer) and the compiler. By declaring the static type of Consider:
The last line causes a compiler error because it violates the static typing contract: you told the compiler that Notes: ¹ This does not mean that every object magically knows what it "is" in all languages. In some cases (e.g. in C++) this information might be used when creating an object, but is then "forgotten" in order to allow the compiler more freedom to optimize the code. If this happens the object still is something, but you cannot poke it and ask it "what are you?". ² Actually, in this trivial example it can prove that. But it won't choose to use this knowledge because honoring the contract of the static type is the whole point. |
|||||||
|
|
This is useful when you want to use polymorphism and you can use the abstract method that has implementation in Dog. Therefore, in this way object is Dog, even so is Object. So you may use this manner when you want to use polymorphism. |
|||
|
|
Dog. With theObject a = new Dog()statement, you can use it in a method. Similarily, you can doObject b = new Cat(), and you can use that the same way. – Ken Dec 19 '11 at 2:58