12

Can I do this in C++ (if yes, what is the syntax?):

void func(string* strs) {
    // do something
}
func({"abc", "cde"});

I want to pass an array to a function, without instantiating it as a variable.

yegor256
  • 102,010
  • 123
  • 446
  • 597

4 Answers4

13

It can't be done in the current C++, as defined by C++03.

The feature you are looking for is called "compound literals". It is present in C language, as defined by C99 (with C-specific capabilities, of course), but not in C++.

A similar feature is planned for C++ as well, but it is not there yet.

AnT stands with Russia
  • 312,472
  • 42
  • 525
  • 765
0

I don't think you can do that in C++98, but you can with initializer_lists in C++1x.

Community
  • 1
  • 1
Firas Assaad
  • 25,006
  • 16
  • 61
  • 78
0

As written, you can't do this. The function expects a pointer-to-string. Even if you were able to pass an array as a literal, the function call would generate errors because literals are considered constant (thus, the array of literals would be of type const string*, not string* as the function expects).

bta
  • 43,959
  • 6
  • 69
  • 99
0

Use a variadic function to pass in unlimited untyped information into a function. Then do whatever you want with the passed in data, such as stuffing it into an internal array.

variadic function

Gregor Brandt
  • 7,659
  • 38
  • 59