I am a PHP web programmer who is trying to learn C#.
I would like to know why C# requires me to specify the data type when creating a variable.
Class classInstance = new Class();
Why do we need to know the data type before a class instance?
|
I am a PHP web programmer who is trying to learn C#. I would like to know why C# requires me to specify the data type when creating a variable.
Why do we need to know the data type before a class instance? |
||||
|
As others have said, C# is static/strongly-typed. But I take your question more to be "Why would you want C# to be static/strongly-typed like this? What advantages does this have over dynamic languages?" With that in mind, there are lots of good reasons:
Or perhaps you were just wondering why you have to specify the class name twice for the same variable on the same line? The answer is two-fold:
|
|||||||||||||||||||||
|
|
It's simply how the language was designed. C# is a C-style language and follows in the pattern of having types on the left. In C# 3.0 and up you can kind of get around this in many cases with local type inference.
But at the same time you could also argue that you are still declaring a type on the LHS. Just that you want the compiler to pick it for you. EDIT Please read this in the context of the users original question
I wanted to comment on several other answers in this thread. A lot of people are giving "C# is statically type" as an answer. While the statement is true (C# is statically typed), it is almost completely unrelated to the question. Static typing does not necessitate a type name being to the left of the variable name. Sure it can help but that is a language designer choice not a necessary feature of static typed languages. These is easily provable by considering other statically typed languages such as F#. Types in F# appear on the right of a variable name and very often can be altogether ommitted. There are also several counter examples. PowerShell for instance is extremely dynamic and puts all of its type, if included, on the left. |
||||
|
|
|
One of the main reasons is that you can specify different types as long as the type on the left hand side of the assignment is a parent type of the type on the left (or an interface that is implemented on that type). For example given the following types:
C# allows you to do this:
Yes, in most cases the compiler could infer the type of the variable from the assignment (like with the Edit: As a point of order - while C# is strongly-typed the important distinction (as far as this discussion is concerned) is that it is in fact also a statically-typed language. In other words the C# compiler does static type checking as compilation time. |
||||
|
|
C# is a statically-typed, strongly-typed language like C or C++. In these languages all variables must be declared to be of a specific type. |
|||||||||||||||||||||
|
|
Ultimately because Anders Hejlsberg said so... |
|||||
|
|
You need [class name] in front because there are many situations in which the first [class name] is different from the second, like:
etc. You can also use the word 'var' if you don't want to specify the type explicitely. |
|||||||||||||||
|
|
C#, as others have pointed out, is a strongly, statically-typed language. By stating up front what the type you're intending to create is, you'll receive compile-time warnings when you try to assign an illegal value. By stating up front what type of parameters you accept in methods, you receive those same compile-time warnings when you accidentally pass nonsense into a method that isn't expecting it. It removes the overhead of some paranoia on your behalf. Finally, and rather nicely, C# (and many other languages) doesn't have the same ridiculous, "convert anything to anything, even when it doesn't make sense" mentality that PHP does, which quite frankly can trip you up more times than it helps. |
|||||||
|
|
Because C# is a strongly typed language |
|||||||||||
|
|
c# is a strongly-typed language, like c++ or java. Therefore it needs to know the type of the variable. you can fudge it a bit in c# 3.0 via the var keyword. That lets the compiler infer the type. |
|||
|
|
|
That's the difference between a strongly typed and weakly typed language. C# (and C, C++, Java, most more powerful languages) are strongly typed so you must declare the variable type. |
|||
|
|
When we define variables to hold data we have to specify the type of data that those variables will hold. The compiler then checks that what we are doing with the data makes sense to it, i.e. follows the rules. We can't for example store text in a number - the compiler will not allow it.
The variable a is of type int, and assigning it the value "fred" which is a text string breaks the rules- the compiler is unable to do any kind of conversion of this string. |
|||
|
|
|
In C# 3.0, you can use the 'var' keyword - this uses static type inference to work out what the type of the variable is at compile time
variable 'foo' will be of type 'ClassName' from then on. |
|||
|
|
|
One things that hasn't been mentioned is that C# is a CLS (Common Language Specification) compliant language. This is a set of rules that a .NET language has to adhere to in order to be interopable with other .NET languages. So really C# is just keeping to these rules. To quote this MSDN article:
Part of the CLS is the CTS the Common Type System. If that's not enough acronyms for you then there's a tonne more in .NET such as CLI, ILasm/MSIL, CLR, BCL, FCL, |
|||
|
|
You don't! Read from right to left. You create the variable and then you store it in a type safe variable so you know what type that variable is for later use. Consider the following snippet, it would be a nightmare to debug if you didn't receive the errors until runtime.
When you'r thinking you can replace the new Class() with a number or a string and the syntax will make much more sense. The following example might be a bit verbose but might help to understand why it's designed the way it is.
|
|||
|
|
|
Static typing also allows the compiler to make better optimizations, and skip certain steps. Take overloading for example, where you have multiple methods or operators with the same name differing only by their arguments. With a dynamic language, the runtime would need to grade each version in order to determine which is the best match. With a static language like this, the final code simply points directly to the appropriate overload. Static typing also aids in code maintenance and refactoring. My favorite example being the Rename feature of many higher-end IDEs. Thanks to static typing, the IDE can find with certainty every occurrence of the identifier in your code, and leave unrelated identifiers with the same name intact. I didn't notice if it were mentioned yet or not, but C# 4.0 introduces dynamic checking VIA the |
|||
|
|
var classInstance = new Class();FYI – Jeff Atwood♦ Jul 13 '09 at 5:19