>>974
有難うございます。では、
int *pInts = new int[3](1,2,3);  //(1)
int *pInts = new int[3]{1,2,3};  //(2)
の違いは何でしょうか?