Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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..?

share|improve this question
Make sure that you take care of multithreading, as the variable is static. – iammilind Jun 4 '12 at 12:43
Generally people use long for this rather than int. – shan Jun 4 '12 at 12:43
@shan: Which people? It can be whatever he wants. – 0A0D Jun 4 '12 at 12:44
@0A0D long is wider than int. If we don't know how many objects we want, better to use long. – shan Jun 4 '12 at 12:47
@shan: It will rollover back to negative (or zero if it is unsigned). long will rollover eventually too. Unsigned int goes to 65535. It all depends on the application. – 0A0D Jun 4 '12 at 12:50
show 4 more comments

4 Answers

This:

class Data
{
private:
   static int ID;
   const int currentID;
public:
   Data() : currentID(ID++){
   }
};

Besides a static counter, you also need an instance-bound member.

share|improve this answer
3  
The member id should be a const field. Once the object is created it probably makes little to no sense to change it. It will also automatically inhibit operator= from overwriting the id of the object, even though the user is left with the responsibility of providing a copy constructor that does not reuse the source object's id. – David Rodríguez - dribeas Jun 4 '12 at 14:13
@DavidRodríguez-dribeas good point. – Luchian Grigore Jun 4 '12 at 14:16

If the ID is static, then it will have the same value for all class instances.

If you want each instance to have sequential id values, then you could combine the static attribute with a class variable, like this:

class Data
{
private:
   static int ID;
   int thisId;
public:
   Data(){
   thisId = ++ID;
   }
};

int Data::ID = 0;

If the application will be multi threaded, then you'll have to synchronize it with something like a pthread mutex.

share|improve this answer
thanks, thought about this solution but I was wondering if there is another way to do it, only with the static int, since I was requested to do it using static int only. thanks! :) – Jjang Jun 4 '12 at 12:47
@Jjang, you could do it with just one static int if you just print the value in the constructor, but if you need to store the unique sequential value, then you'll need more than just the static int. – Brady Jun 4 '12 at 12:49
@Jjang: You cannot have unique id's per object with a single shared id (static), that makes no sense at all. – David Rodríguez - dribeas Jun 4 '12 at 14:14

Each instance of Data needs its own non-static member variable that stores its ID. A static variable can be used to store the last used ID which would be incremented in the constructor of Data.

Instead of a static counter, which is not thread-safe, consider using boost's uuid:

#include <boost/lexical_cast.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>

using boost::lexical_cast;
using boost::uuids::uuid;
using boost::uuids::random_generator;

std::string id_ = lexical_cast<std::string>((random_generator())());
share|improve this answer

where is the instance(non static) id here? you need to declare a new instance ID field like this

int m_ID;

then in your constructor do

Data(){m_ID = ::InterlockedIncrement(&ID);}

in an interlocked or other thread-safe way

share|improve this answer
Nice idea, but how portable is that? – Brady Jun 4 '12 at 13:31
1  
Not portable at all of course ;-) I was just giving an example. – Bond Jun 4 '12 at 13:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.