Skip to Main Content
C# in a Nutshell
book

C# in a Nutshell

by Ben Albahari, Ted Neward, Peter Drayton
March 2002
Intermediate to advanced content levelIntermediate to advanced
864 pages
31h 8m
English
O'Reilly Media, Inc.
Content preview from C# in a Nutshell

Name

Interlocked

Synopsis

The static members of this class provide thread safety for common built-in arithmetic operations, such as ++, --, and exchanging variables.

If two threads increment the same variable, one thread could be interrupted after both have retrieved the initial value of the variable. If this happens, then both operations store the same value, meaning that the variable has been incremented once instead of twice. The Interlocked methods protect against this kind of error. Increment() and Decrement() replace ++ and --, respectively, and Exchange() switches two variables. CompareExchange() compares the first two variables and, if true, assigns the third value to the first variable.

public sealed class Interlocked {
// Public Static Methods
   public static method int CompareExchange(ref int location1, 
        int value, int comparand);  
   public static method object CompareExchange(
        ref object location1, object value, 
        object comparand);  
   public static method float CompareExchange(
        ref float location1, float value, 
        float comparand);  
   public static method int Decrement(ref int location);  
   public static method long Decrement(ref long location);  
   public static method int Exchange(ref int location1, 
        int value);  
   public static method object Exchange(ref object location1, 
        object value);  
   public static method float Exchange(ref float location1, 
        float value);  
   public static method int Increment(ref int location);  
   public static method long Increment(ref long location);  
}
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# 8.0 in a Nutshell

C# 8.0 in a Nutshell

Joseph Albahari, Eric Johannsen
C# 10 in a Nutshell

C# 10 in a Nutshell

Joseph Albahari
C# in a Nutshell, Second Edition

C# in a Nutshell, Second Edition

Peter Drayton, Ben Albahari, Ted Neward
Code like a Pro in C#

Code like a Pro in C#

Jort Rodenburg

Publisher Resources

ISBN: 0596001819Catalog PageErrata