in reply to Re: When will a key shared between two hashes?
in thread When will a key shared between two hashes?

If keys are always shared, they should use the same memory-address, or not?
  • Comment on Re^2: When will a key shared between two hashes?

Replies are listed 'Best First'.
Re^3: When will a key shared between two hashes?
by JavaFan (Canon) on Dec 10, 2011 at 13:40 UTC
    If keys are always shared, they should use the same memory-address, or not?
    Sure, but you cannot get the memory address of a hash key from the language. Do note that hash keys are not SVs.
      ok, thank you for the answer.