我想寫一個指針數組結構在C++中。我的主要目標是能夠動態地添加指向數組的指針。我遇到了合成器的問題 struct items
{
int member1;
int member2;
};
int N=5;
items **ptr=new item *[N]; // This is a ptr to an array of ptr's.
我正在寫一個簡單的程序來理解新的和刪除操作符重載。 size參數如何傳遞給new運算符? 僅供參考,這裏是我的代碼: #include<iostream>
#include<stdlib.h>
#include<malloc.h>
using namespace std;
class loc{
private:
int longitude,latitude;