試圖爲鮑比陣列分配內存,但它不起作用。爲什麼?指針內存分配問題
我期望博比指針被分配給5個空格,但是當我運行並且在本地查找時只有一個。
#include "queue.h"
#include <iostream>
using namespace std;
int main()
{
// Create the queue
CustomQueue* obj = new CustomQueue(5);
int astar[100];
int* bobby;
bobby = new int[5];
// Place numbers into the queue
obj->push(50);
obj->push(40);
obj->push(30);
obj->push(20);
obj->push(10);
return 0;
}
什麼是不工作的,到底是什麼?發生了什麼?你期望會發生什麼?你的期望沒有得到滿足? –
回答上面。 – RoR
你如何「看當地」? 'bobby'只有1.什麼'bobby' **指向**是5. – Muggen