0

What means (id=40) in Eclipse near variable PacketNr watch info? What this id is used for?

id=40

vico
  • 17,051
  • 45
  • 159
  • 315

2 Answers2

3

The ID is just an arbitary number assigned by the eclipse debugger. This can be used to determine whether two references are pointing to the same object or not. So two references to the same object should have a same id. This can be a help while debugging.

Juned Ahsan
  • 67,789
  • 12
  • 98
  • 136
1

That is nothing but a unique object-id, eclipse assigns to objects.

It will just help in debugging.

JNL
  • 4,683
  • 18
  • 29