I'm trying to create a Data class whose objects each hold a unique ID.
I want the 1st object's ID to be 1, the 2nd to be 2, etc. I must use a static int, but all the objects have the same ID, not 1, 2, 3...
This is the Data class:
class Data
{
private:
static int ID;
public:
Data(){
ID++;
}
};
How can I do it so the first one ID would be 1, the second would be 2, etc..?

static. – iammilind Jun 4 '12 at 12:43longfor this rather thanint. – shan Jun 4 '12 at 12:43longis wider thanint. If we don't know how many objects we want, better to uselong. – shan Jun 4 '12 at 12:47longwill rollover eventually too. Unsigned int goes to 65535. It all depends on the application. – 0A0D Jun 4 '12 at 12:50