Tagged Questions
var is a keyword in a number of programming languages.
262
votes
92answers
31k views
Use of var keyword in C# [closed]
After discussion with colleagues regarding the use of the 'var' keyword in C# 3 I wondered what people's opinions were on the appropriate uses of type inference via var?
For example I rather lazily ...
47
votes
5answers
12k views
PHPDoc type hinting for array of objects?
So, in PHPDoc one can specify @var above the member variable declaration to hint at its type. Then an IDE, for ex. PHPEd, will know what type of object it's working with and will be able to provide a ...
37
votes
5answers
9k views
VB.NET equivalent to C# var keyword
Is there a VB.NET equivalent to the C# var keyword?
I would like to use it to retrieve the result of a LINQ query.
33
votes
8answers
6k views
C# 'var' vs specific type performance
Earlier I asked a question about why I see so many examples use the 'var' keyword and got the answer that while it's only necessary for anonymous types, that it is used nonetheless to make writing ...
31
votes
37answers
7k views
C# - Do you use “var”? [closed]
C# 3.0 introduces implicitly typed variables, aka the "var" keyword.
var daysInAWeek = 7;
var paul = FindPerson("Paul");
var result = null as IPerson;
Others have asked about what it does or what ...
27
votes
5answers
930 views
var (reference) in C# is boxing?
My boss forbide me to use var as it would cause boxing and slowing down the app.
Is that true?
22
votes
5answers
1k views
Difference between the implementation of var in Javascript and C#
I would like to ask a theoretical question. If I have, for example, the following C# code in Page_load:
cars = new carsModel.carsEntities();
var mftQuery = from mft in cars.Manufacturers
...
12
votes
5answers
215 views
How do JavaScript variables work?
I know that JavaScript vars point to a value:
var foo = true;
//... later
foo = false;
So in that example I've changed foo pointing to true -> foo pointing to false, but if I do:
for (var i=0; ...
11
votes
8answers
514 views
Is there any technical reason to use or not to use var in C# when the type is known?
It seems that more and more C# code I read uses the var type identifier:
foreach (var itemChange in ItemChanges)
{
//...
}
instead of explicitly stating the type:
foreach (ItemChange ...
9
votes
5answers
206 views
Use of var and default for declaration in C#
Recently I saw a person heavily using var and default keywords for declaration of variables (and for every declaration), something like this:
var employee = default(Employee); //Employee is a class
...
9
votes
4answers
300 views
What is the purpose of 'var'? [closed]
Possible Duplicate:
What's the point of the var keyword?
I'm not asking how it works. I am not asking if it affects performance. I already know those answers.
I want to know what ...
9
votes
5answers
626 views
How much impact does use of 'var' have on performance of C# Compiler?
I find the var keyword greatly helps in reducing noise in my C# code, with little loss of readability; I'd say that I now use explicit typing only when the compiler forces me to.
I know that using ...
6
votes
3answers
96 views
Javascript: z = z || [] throws an error when not using VAR - why?
Out of just intellectual curiosity, why does javascript accept
var z = z || [];
to initialize z (as z may defined initially)
but without var, it throws an error (in global space)
z = z || [];
...
6
votes
4answers
235 views
“var” type inference in C# [closed]
Possible Duplicate:
Why does var evaluate to System.Object in “foreach (var row in table.Rows)”?
I was rather suprised to discovered the following today....
SqlDataReader ...
6
votes
4answers
226 views
Php: what's the difference between $var and &$var?
What is the difference between
foreach ($my_array as $my_value) {
}
And:
foreach ($my_array as &$my_value) {
}
?
May I ask you to give me two real-world examples of when to use one and when ...
5
votes
5answers
142 views
Dynamic, Object, Var
With the inception of the dynamic type and the DLR in .NET 4, I now have 3 options when declaring what I call "open" types:
var, locally implicit types to emphasize the 'what' instead of the 'how',
...
4
votes
3answers
150 views
Doubts about the 'var' keyword and ternary operator ?:
If var keyword is resolved at compile time, how does the following work?
class A {
}
class B : A {
}
int k = 1;
var x = (k < 0) ? new B() : new A();
Edit:
I finally understood that the problem ...
4
votes
3answers
1k views
Can someone decode this javascript?
I found this javascript in a Facebook viral page here. I think the code is malicious so I would like to know what it does.
Here is the code:
javascript: var ...
4
votes
4answers
255 views
When to var scope your variables in ColdFusion components?
(a) What cases should you var scope variables and (b) what cases should you not var scope in a ColdFusion components?
4
votes
3answers
274 views
4
votes
2answers
156 views
What is the difference between declaring javascript objects with var vs. with function?
I'm a confused newbie. I read in a tutorial that you create a javascript object like so:
function myObject() {
this.myProperty = "a string";
this.myMethod = function () {
//Method ...
3
votes
4answers
86 views
JavaScript if var exists
I want my code so that if a specific var exists it will perform an action, else it will be ignored and move along. The problem with my code is, if the specific var does not exist it causes an error, ...
3
votes
1answer
270 views
How to correctly pass through argument of object type with var prefix?
Summarization:
type
MyObject = object
end;
MyRecord = record
end;
MyClass = class
end;
procedure ProcA(aMyObject: MyObject);
procedure ProcB(var aMyObject: MyObject);
...
3
votes
10answers
264 views
var in class gives error [closed]
Possible Duplicate:
Using var outside of a method
class A {
string X;
}
// Proper
class A {
var X;
}
// Improper (gives error)
Why is it, that i cant have var type variable declare in ...
3
votes
2answers
147 views
How to extract results from a Linq query?
class Program
{
static void Main(string[] args)
{
MyDatabaseEntities entities = new MyDatabaseEntities();
var result = from c in entities.Categories
...
3
votes
9answers
522 views
What advantages does using var have over the explicit type in C#? [closed]
Possible Duplicates:
What’s the point of the var keyword?
Use of var keyword in C#
I understand how IEnumerable<...> for a datatype can make the code a little less readable or ...
3
votes
7answers
172 views
Can this Linq query be typed as anything other than “var”?
When I do a query that returns an anonymous type
var assets =
from Product p in Session.CreateLinq<Product>()
where bundles.Contains(p.ProductBundle)
select new ...
3
votes
3answers
181 views
var keyword without 'using someNamespace'
How does Visual Studio/intellisense know what to do with a variable declared as var even if you don't include the necessary using declaration at the top?
For example, I have class MyDomainObject ...
3
votes
5answers
482 views
JavaScript variable scope question: to var, or not to var
Many thanks in advance. I'm working out of a schoolbook and they're using one function to call another which opens a window:
function rtest(){
content='dans window';
oneWindow=open("","Window ...
3
votes
3answers
416 views
Using var outside of a method
I wanted to use the var keyword to declare a field in my class however var only seems to work inside methods.
The code I have looks like:
public static Dictionary<string, string> CommandList = ...
3
votes
5answers
597 views
MVC Examples use of var
Maybe I live in a bubble, or am just too new, but I was wondering if anyone else has noticed the heavy use of 'var' to declare variables instead of a specific type in many of the MVC examples by ...
2
votes
3answers
76 views
var keyword and javascript function's scope
I would like to find the easiest way to be sure about the scope of variables.
Seeing at next example (jsfiddle):
var foo = function() {
var bar = function() {
pub = "public";
var ...
2
votes
3answers
71 views
Private var inside Javascript literal object
How can I declare a private var inside a literal object? Becasuse I've this code:
var foo = {
self: null,
init: function() {
self = this;
self.doStuff();
},
...
2
votes
2answers
63 views
Is it possible to bash/ksh call a variable of variable
Is it possible to bash/ksh call a variable of variable, eg:
set -A MY_ARRAY ${${var}_something}
BR
Kolesar
2
votes
3answers
50 views
javascript array cycling only first var
I am using javascript to cycle through an array of urls within an iframe and so far when the prev or next buttons are pressed it jumps to the first var in the array and both prev and next functions ...
2
votes
1answer
204 views
var keyword not working in LINQPad 4
I am trying to run a simple code in LINQPad as either C# Program or C# Statements:
var query = dbtable.Where(f => f.date== new DateTime(2011,10,18));
fd.Dump();
I get the following error:
...
2
votes
3answers
157 views
javascript global variable with 'var' and without 'var' [closed]
Possible Duplicate:
Difference between using var and not using var in JavaScript
I understand that I should always use 'var' to define a local variable in a function.
When I define a ...
2
votes
2answers
91 views
Why can't i declare a field using var [closed]
Possible Duplicate:
Why class fields cannot be var?
I'd like to avoid typing out complex/long type definitions for fields like you can with local variables.
I'd like to know why this ...
2
votes
1answer
78 views
Local function updating two vars of enclosing method
Posting from the bus so I'll keep it short.
If a local function needs to access and update a local var of the enclosing method, the compiler has to translate the latter into an object, so it can be ...
2
votes
3answers
286 views
MVC Razor Var data
Hi i am new to MVC3 Razor .
I was trying to display the values from the database table.
in controller i wrote the code as
var test1 = from ed in db.EmpDetails
join dp in ...
2
votes
7answers
151 views
When do I use var?
My understanding it that with in a function if I use var then I have a local variable. If I do not delcare var I now have a global variable.
But what about oustide of functions, what effect does var ...
2
votes
6answers
276 views
When should I use “var” instead of “object”?
I was wondering when should you use var?
Almost anything in C#, except for maybe the primitives and a few more odd cases, derive from Object.
So wouldn't it be a better practice to use that actual ...
2
votes
5answers
346 views
Is using var actually slow? If so, why?
I am learning C# and .NET, and I frequently use the keyword var in my code. I got the idea from Eric Lippert and I like how it increases my code's maintainability.
I am wondering, though... much has ...
2
votes
1answer
181 views
how should I convert VAriant from C++ in C#
Hy! I have the following code in Visual C++ 6 and I want to convert it in C#.
SAFEARRAY * psa = NULL;
SAFEARRAYBOUND rgsabound;
rgsabound.lLbound = 0;
rgsabound.cElements = infoList.GetCount();
...
2
votes
4answers
206 views
Is there an equvalent to Dim/var in C++?
I'm new to C++ and i have a case where vb.nets Dim or C#s var would help me greatly.
i googled around and i found no questions for this? (although search terms with var or dim and C++ seemed to stray ...
2
votes
4answers
142 views
When to use var in Javascript
Maybe pretty easy question.
Where should I use var keyword in JavaScript. It seems to me using it or not have the same effect ( but of course I'm still learning the language )
For instance these ...
2
votes
5answers
278 views
javascript, why not remove var keyword?
almost all javascript books said that
always use var keyword when you
declare variables, because without
var, the variable will be declared as
global variable.
then, why not remove var ...
2
votes
3answers
238 views
ReSharper: Visual Studio : warning use VAR [closed]
Possible Duplicates:
What's the point of the var keyword?
ReSharper and var
I am using ReSharper Tool for code cleanup.
it always prompt to use var instated of actual type name.
it ...
2
votes
5answers
318 views
Accessing static variable from a friend function
class Base
{
private:
static int num;
public:
friend void setnum(Base obj);
};
void setnum(Base obj)
{
obj.num=4; /* Error */
}
A friend function is supposed to have access to all ...
2
votes
5answers
265 views
Jquery if its the first time element is being clicked
I need my script to do something on the first time an element is clicked and continue to do something different on click 2,3,4 and so on
$('selector').click(function() {
//I would realy like this ...