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
  • 97,508
  • 114
  • 426
  • 573

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
  • 302,239
  • 39
  • 506
  • 752
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
  • 23,880
  • 16
  • 59
  • 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
  • 41,967
  • 5
  • 70
  • 96
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,552
  • 36
  • 58