目录

    new关键字声明,例如:

    var x = new string();
    

    类名方式声明,例如申明一个string类的对象:

    string x;