string s = new string("Hello");
    这是一个new operator,它一共分两步执行,第一步是使用operator new分配内存,第二步是调用构造函数。
    new operator 不可改变,operator new 可以定制。