...
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.
Anchor | ||||
---|---|---|---|---|
|
class variable : A class variable is a static
field associated with the containing class.
Anchor | ||||
---|---|---|---|---|
|
instance variable : An instance variable is a non-static field that is a part of every instance of the class
Anchor | ||||
---|---|---|---|---|
|
sanitization : Sanitization is a term used for validating input and transforming it to a representation that conforms to the input requirements of a complex subsystem. For example, a database may require all invalid characters to be escaped or eliminated prior to their storage. Input sanitization refers to the elimination of unwanted characters from the input by means of removal, replacement, encoding or escaping the characters.
...