Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
alien methods
alien methods

Wiki Markup
*alien methods* : "From the perspective of a class C, an alien method is one whose behavior is not fully specified by C. This includes methods in other classes as well as overrideable methods (neither private nor final) in C itself." \[[Goetz 06|AA. Java References#Goetz 06]\].

Anchor
atomicity
atomicity

atomicity : When applied to an operation on primitive data, indicates that other threads that might access the data might see the data as it exists before the operation occurs or after the operation has completed, but may never see an intermediate value of the data.

...