声明变量,一定要用 var!

Posted 大胡子毛绒老头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了声明变量,一定要用 var!相关的知识,希望对你有一定的参考价值。

public static T TryGet<T>(Func<T> func, T ifError = default(T)) {
    try {
        return func();
    } catch {
        return ifError;
    }
}

string a;
try{ a = doooooooooo(); } catch { a = "wrewre"; }

//this is shit!

var a = TryGet(doooooooooo, "wrewre");

//great!

以上是关于声明变量,一定要用 var!的主要内容,如果未能解决你的问题,请参考以下文章

let var const的区别

全局变量和局部变量的区别

JS 的三种定义变量 var let const

ECMAScript 6 let和const命令

Vue中 let 关键字

ECMAScript 6 入门