vote up 8 vote down star
1

Just curious. I'm about 99.999% sure there is none...but anything?

EDIT: These are OK answers (saving typing time or making the code less verbose for "readability"). I guess I should have clarified what I meant by "use" - some construct/design that couldn't be done without "var" .

flag

3  
Similar question stackoverflow.com/questions/633474/… – Prashant Sep 16 at 3:49
Just a comment to the answerers and commenters complaining about var and dynamic. They are features that you don't have to use. Quit complaining. – Darko Z Sep 16 at 4:14
var is bad and should be avoided because when you write code you should not feel lazy to write really long business object name, but instead you should write it the way it will always be percieved by you or anyone who reads the code later on. – Akash Kava Sep 16 at 6:30
var is bad if abused, just like any feature of any computer language. – Darko Z Sep 16 at 10:15

11 Answers

vote up 20 vote down check

Whats better in terms of readability?

AReallyReallyLongBusinessObjectName obj = new AReallyReallyLongBusinessObjectName();

OR

var obj = new AReallyReallyLongBusinessObjectName();

I say in terms of readability because using var has absolutely no impact on your app seeing as the two statements generate the same IL when compiled.

Response to edit: there is nothing that requires you to use var (other than anon types) - its just syntactic sugar.

link|flag
Even more so when using generic types. – Ty Sep 16 at 3:55
i guessed as much(syntactic sugar). how would one write the code below without var, though? ------- var subset = from i in numbers where .... foreach (var i in subset) { --- – moogs Sep 16 at 4:05
assuming numbers contains ints then you'd do this: IEnumerable<int> subset = from.... – Darko Z Sep 16 at 4:11
oh and second part foreach(int i in subset).... – Darko Z Sep 16 at 4:12
2  
That may be so, but I'm not saying you should use var, rather I'm giving an example of better readability by using var. In any case I would argue that for whatever the objects class name is, instantiating it in a var is more readable. – Darko Z Sep 16 at 10:14
show 3 more comments
vote up 0 vote down

I use var for nearly every assignment to a local variable. This really limits the amount of code changes I have to make if a particular method's return type changes. For example, if I have the following method:

List<T> GetList()
{
    return myList;
}

I could have lines of code all over the place doing local variable assignment that looks like this:

List<T> list = GetList(); 

If I change GetList() to return an IList<T> instead, then I have to change all those lines of assignment. N lines of assignment equals N+1 code changes if I change the return type.

IList<T> GetList()
{
    return myList;
}

If, instead, I had coded like the following:

var list = GetList(); 

Then I only have to change GetList() and the rest will be verified through compilation. We're off and running with only one code change. Granted, the compiler will complain if there was code depending on list to be a List<T> and not an IList<T>; but those should be fewer than N.

link|flag
vote up 0 vote down

I've read somewhere that it's recommended that you use "var" in cases where you're calling code in a module not written by you, and that returns an object who's type is subject to future changes. If you were to write a wrapper to that external module, and you would only forward the result, than using var to temporarily store it would make your code still valid if/when the data type returned by the external call changes. Also, if you know that this result is some kind of collection, but again, not of a particularly stable kind, assigning to var and then iterating could still work in the event of further change.

link|flag
That won't work. var is just syntactic sugar. It doesn't make the type anonymous. As soon as you need to perform operations with the variable you're going to have to work within a specific type. Even if you're just writing a wrapper, you'd have to define the return type for your wrapper method since var can't be used in method signatures. It can make quick changes a little easier because if you change a data type you have one-less place to change it, but that's about it. – Dan Herbert Sep 17 at 15:29
vote up 1 vote down

When using MVC and having a client controller to return all your ajax requests, you will pretty much always use a var, because with an anonymous type you can only send the data needed by the application back to the client.

var response = new { var1 = "bla", var2 = "foo" };
return JSon(response);
link|flag
Nope, this is just being lazy not declaring var1 and var2 as strings, right? – moogs Sep 16 at 7:10
No this is creating a json object with var1 and var2 as properties. Nothing to do with lazy. I might create this object from a business entity that contains way too much info for my client f.e. – Jan Jongboom Sep 16 at 7:37
yup, but as with the other answers, this is just syntactic sugar. you can implement this w/o the var keyword, right? – moogs Sep 16 at 12:19
1  
Only if you want to create an object class for everything you'll send back to the client, which doesn't makes sense, because you're outputting it as JSON which doesn't care wether you have a real class or not. – Jan Jongboom Sep 16 at 13:21
i'm not misunderstanding you :) you just described a syntactic sugar. – moogs Sep 17 at 18:26
vote up 1 vote down

I find it invaluable in prototyping, it lets me quickly store results from functions / properties and also enables me to adjust the return types from those functions with less cleanup afterwards. It's a (wee) bit like an interface for the methods, it lets me worry less about the concrete return types and more about the intent of the method.

As others have mentioned it's also nice to use when initializing new instances of objects; having Foo foo = new Foo(); is redundant. var foo = new Foo(); is just as readable, even better if there's multiple declarations...

var connString = BuildConnectionString();
var sqlConn = new SqlConnection(connString);
var commandText = BuildCommandText();
var sqlComm = new SqlCommand(commandText, sqlConn);

vs.

string connString = BuildConnectionString();
SqlConnection sqlConn = new SqlConnection(connString);
string commandText = BuildCommandText();
SqlCommand sqlComm = new SqlCommand(commandText, sqlConn);
link|flag
vote up 1 vote down

My favorite non-LINQ usage is in conjunction with foreach. Specifying the type explicitly instructs the compiler to do a cast if necessary, while simply using var is a simple way to ensure I really have the item type I think I have.

link|flag
example? If I have a collection of objects, why would I want do interact with them by some other way rather than a common interface? – moogs Sep 16 at 7:11
vote up 2 vote down

How about anonymous classes?

var mySomething = new { Name = "Hello", Age=12 };
link|flag
yup, but what design/construct would require this? – moogs Sep 16 at 3:59
vote up 7 vote down

var is mostly useful for anonymous types (you cannot create one without it). I have also seen others use it to reduce typing and redundant type information through type inference.

I personally find that it can hurt readability when it is used to reduce typing - remember that you spend 1% of your time writing the code and 99% of the time reading it.

// the compiler may be able to infer the type
// of "foo" but I certainly cannot without 
// viewing the implementation of "doSomething".
var foo = doSomething();

Edit: The main thing to remember (and this is common to all matters of coding style) is that you need to choose a style and use it consistently. As long as you like it and have a reason for using it that you feel is sound then you have won the battle :)

link|flag
Not sure I agree with the bit about readability. – Ty Sep 16 at 3:50
Agree but only when used with methods like your example, but not when creating new objects OR using commonly known methods like some of the new extensions Where(), Any(), First() etc... – Darko Z Sep 16 at 3:52
Having meaningful method names and just inspecting the surrounding code would give some idea but at the end of the day I guess it comes down to personal preference. – Ty Sep 16 at 3:58
1  
var foo = doSomething(); dim foo = doSomething(); 'Swear I've seen this somewhere... Before you tear my head off I do understand that these do mean different things, but VB.Net is rubbing off on C#, albeit slowly – Spence Sep 16 at 3:59
+100 for the 1%/99% comment. This problem is especially evil when using var with methods that return numeric types. You can easily end up doing int math when you think you're doing float math. – MusiGenesis Sep 16 at 4:01
show 4 more comments
vote up 13 vote down

I use it in foreach loops very often:

foreach(var item in collection)
link|flag
1  
You can use var for linq? This is pretty much the only way I use it. – Spence Sep 16 at 3:57
@Spence: You can use var for anonymous types which commonly arise when using LINQ. – Jason Sep 16 at 4:05
Satire is very difficult to project in a forum. Cheers for the tip ;) – Spence Sep 16 at 4:26
This is very annoying, as it is not obvious that the type that item is. Really do not recommend this approach. – silky Sep 16 at 5:35
in a simple scope this is completely okay. and since we keep close to the single responsibility principle, every method IS a simple scope ;-) – Marc Wittke Sep 16 at 6:11
show 1 more comment
vote up 1 vote down

Yes, I use it all the time while creating objects for class with long name and in foreach loop

EDIT : I don't think var could play major role in design or in any construct... because it can only be used in locally i.e within method or in scope.

Another major restriction of var is you can not use it as method parameter or as a return type. You even can not declare it as field in class. It means we can use var just to save typing time or making the code less verbose for "readability" and with LINQ

link|flag
vote up 2 vote down

I use var all the time-- especially when the class name is very long.

It doesn't post a problem for me because my methods are usually named in such a way that by just taking a glance of the name, I can infer the type.

And if I can't, I will use the VS 2008 intellisense to help me, or I just use Resharper var=> class name converter to convert it to the explicit name.

Another case I find a great use of var is in a foreach loop:

foreach(var id in idList)
{
  // do what you will here
}
link|flag
nothing like long class names to ruin your day... TableLayoutPanel and TableLayoutPanelCellPosition almost rotted my hands off back in the day – Yoooder Sep 16 at 4:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.