Array Equivalent of Bare-String

拈花ヽ惹草 提交于 2019-12-04 07:09:58

问题


I can do this without issue:

const char* foo = "This is a bare-string";

What I want is to be able to do the same thing with an array:

const int* bar = {1, 2, 3};

Obviously that code doesn't compile, but is there some kind of array equivalent to the bare-string?


回答1:


You can't do this:

const int* bar = {1, 2, 3};

But you can do this:

const int bar[] = {1, 2, 3};

Reason is that char* in C (or C++) have an added functionality, besides working as a char pointer, it also works as a "C string", thus the added initialization method (special for char*):

const char* foo = "This is bare-string";

Best.



来源:https://stackoverflow.com/questions/29394937/array-equivalent-of-bare-string

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!