Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how can i assign the hash code of any object into the instance veriable of the same object at compile time ?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can't. Objects don't exist at compile time.

share|improve this answer
how can i do the same at run time? as the objects creates all the hash code of these objects should be stored in the instance veriable array? – ManMohan Sep 14 '10 at 6:38
I think you really need to state your question better. What exactly are you trying to do? what is the "instance variable array" you mention - you never mentioned an array previously. If for instance you want an array with the hash of a series of objects, then you just need to store the hash in the array as you create the objects. – davmac Sep 15 '10 at 9:59

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.