请教下面这两行初始化字符串数组的代码有什么区别?string[] a = {"abc", "123", "!@#$"};
string[] a = new string[] {"abc", "123", "!@#$"};