我如何将未命名的(新)数组作为参数c ++传递

时间:2017-05-25 07:27:24

标签: c++ arrays

而不是做像

这样的事情
char attach_bytes[4];
attach_bytes[0] = 1;
attach_bytes[1] = 2;
attach_bytes[2] = 3;
attach_bytes[3] = 4;
FindPattern(0, 0, attach_bytes, 0);

我想要做类似

的事情
FindPattern(0, 0, [ 1, 2, 3, 4 ], 0);

我将如何做到这一点?

0 个答案:

没有答案