使用此代码:
struct Structure {
int a;
char b[4];
};
void function() {
int a = 3;
char b[] = {'a', 'b', 'c', 'd'};
}
我可以使用聚合初始化使用Structure
和a
的值初始化b
吗?
我尝试了Structure{a, b}
,但这给了我错误cannot initialize an array element of type 'char' with an lvalue of type 'char [4]'
答案 0 :(得分:0)
struct S {
int a;
char b[4];
};
int main() {
S s = { 1, {2,3,4,5} };
}
编辑:重新阅读您的问题 - 不,您不能这样做。您无法使用其他阵列初始化数组。
答案 1 :(得分:0)
如果您熟悉参数包扩展,我认为您可以这样:
struct Structure {
int a;
char b[4];
};
template< typename... I, typename... C>
void function(I... a, C... b) {
Structure s = { a..., b... }; // <- here -> a = 1 and b = 'a','b','c','d'
std::cout << s.a << '\n';
for( char chr : s.b ) std::cout << chr << ' ';
}
int main(){
function( 1, 'a','b','c','d' );
}
输出:
1
a b c d