0
我是新的c + +,我試圖弄清楚指針和數組的概念,所以我的問題是有一個類叫做「保留」,它保留一個等待列表未處理保留 ,我有一個數組指針。我的問題是如何使用指針數組來檢查保留是否爲1?如何檢查具有certian值的指針數組的索引?
假設
reservation** wait[i] ; // my array of pointers
if (wait[i]==1) // does this mean that i am checking if the index value is one?
非常感謝你回答,我想在這個題目的一些進一步的解釋,如果你願意? =)
哪裏是你的代碼? – Devolus
你的指針數組聲明是錯誤的! –
我期望一個像這樣聲明的指針數組:'int ** my_array;'。這裏沒有索引。如果指針的數量是已知的,你可以聲明它:'int * my_array [n];'。 – lucas92