我定义了一个包含 std::list 的结构。在我的代码中,我尝试遍历这个列表,但我得到了一些奇怪的结果。
struct my_struct_t {
std::list<int> my_list;
//More fields
};
这是我在头文件中定义的结构。
包含此标头的文件中的一些示例代码将是:
std::list<int>::iterator my_iterator;
struct my_struct_t* test_struct = (struct my_struct_t*) malloc(sizeof(struct my_struct_t));
my_iterator = test_struct->my_list.begin();
printf("Beginning of list address: %p\n", my_iterator);
my_iterator = test_struct->my_list.end();
printf("End of the list address: %p\n", my_iterator);
printf("Address of the list: %p\n", &(test_struct->my_list));
此代码编译并运行良好,但输出将类似于:
Beginning of list address: (nil)
End of the list address: 0x86f010
Address of the list: 0x86f010
最后两行对我来说很有意义,因为列表应该是空的。但是我如何/为什么一开始就得到一个空指针?我怎样才能解决这个问题?