One use of the var keyword in C# is implicit type declaration. What is the Java equivalent syntax for var?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is none. Alas, you have to type out the full type name.
Edit: 7 years after being posted, type inference for local variables (with
var) was added in Java 10.Edit: 6 years after being posted, to collect some of the comments from below:
The reason C# has the
varkeyword is because it’s possible to have Types that have no name in .NET. Eg:In this case, it would be impossible to give a proper type to
myData. 6 years ago, this was impossible in Java (all Types had names, even if they were extremely verbose and unweildy). I do not know if this has changed in the mean time.varis not the same asdynamic.variables are still 100% statically typed. This will not compile:varis also useful when the type is obvious from context. For example:I can say that in any code that I am responsible for,
currentUserhas aUseror derived class in it. Obviously, if your implementation ofUser.GetCurrentreturn an int, then maybe this is a detriment to you.This has nothing to do with
var, but if you have weird inheritance hierarchies where you shadow methods with other methods (egnew public void DoAThing()), don’t forget that non-virtual methods are affected by the Type they are cast as.I can’t imagine a real world scenario where this is indicative of good design, but this may not work as you expect:
As indicated, virtual methods are not affected by this.
No, there is no non-clumsy way to initialize a
varwithout an actual variable.In this case, just do it the old fashioned way: