我正在尝试将结构指针传递给函数并通过指针初始化结构。知道为什么这不起作用吗?
struct Re
{
int length;
int width;
};
void test (Re*);
int main()
{
Re* blah = NULL;
test(blah);
cout << blah->width;
return 0;
}
void test(Re *t) {
t = new Re{5, 5};
}
我究竟做错了什么?