這是學習C的一個難題。這是用C 數據庫管理系統,我有三個結構: -初始化嵌套結構
struct Address {
int id;
int set;
char *name;
char *email;
};
struct Database {
int rows;
struct Address *row;
};
struct Connection {
FILE *file;
struct Database *db;
};
我試圖初始化數據庫結構。但我越來越segfault
void Database_create(struct Connection *conn, int no_of_rows)
{
int i = 0;
conn->db->row_num = no_of_rows;
for(i = 0; i < conn->db->row_num; i++) {
// make a prototype to initialize it
struct Address addr;
addr.id = i;
addr.set = 0;
// then just assign it
conn->db->rows[i] = addr;
}
}
我做了另一個功能,分配內存到這些結構。
struct Connection *Database_open(const char *filename, char mode)
{
struct Connection *conn = malloc(sizeof(struct Connection));
if(!conn) die("Memory error");
int number = conn->db->rows;
conn->db = malloc(sizeof(struct Database));
if(!conn->db) die("Memory error");
conn->db->row = malloc(sizeof(*conn->db->row) * number);
if(!conn->db->row) die("Memory error");
if(mode == 'c') {
conn->file = fopen(filename, "w");
} else {
conn->file = fopen(filename, "r+");
if(conn->file) {
Database_load(conn);
}
}
if(!conn->file) die("Failed to open the file");
return conn;
}
的valgrind說,在Database_open「使用大小爲4的初始化值」()
可能有人建議我可能是錯在這裏做什麼?
爲什麼你使用'rows'作爲數組,當它只是一個'int'? – tay10r
使用調試器查看導致段錯誤的原因。最有可能''conn-> db'沒有初始化或者什麼 –
@Ajit你應該包括你如何調用'Database_create' – tay10r