new创建对象的如何传递构造参数-c++时间:2021-10-03 19:31:15 new 是C++的,会调用构造函数,可以使用如下方法传递参数给构造函数 int *a = new int[3]{ (1),(2),(3) };