Comparison of class handles

Hi,
How the logical equality operator works on class handles? If a1, a2 are handles of a class named ‘A’, how does (a1 == a2) will work?
In 11.4.5 of LRM its mentioned that the logical operator compares the values of class handles. What values does it compare?

Thank you.

In reply to Naveenkb:

as LRM said, the values of class handles.

not object content, since there’s no operator overload in SV as in C++;

In reply to Naveenkb:

When comparing two class variables. the equality operator returns true if they have a handle to the same object.