在CSDN中的定义是:
public static string CompareExchange(
ref string location1,
string value,
string comparand
)
用locationl与comparand进行比较,如果相等,那么locationl的值就是value的值;如果不等locationl的值就不变。函数等同于一下函数(简单模拟):
static string CompareExchange(ref string location1, string value, string comparand)
{
if(location1==comparand)
{
location1 = value;
}
return value;
}
示例:
string s1 = "";
string s2 = "";
string s3 = "";
string s4 = Interlocked.CompareExchange(ref s1, s2, s3); //如果s1等于s3,那么就s2的值赋给s1,表达式的值是s2的值。
Console.WriteLine(s1);
Console.WriteLine(s4);
输出:
2.知识点二
下面是一个有趣而又使用的方法,利用序列化对一个对象进行深拷贝
public static object DeelClone(object original) //利用序列化创建对象的深拷贝
{ using (MemoryStream stram = new MemoryStream()) //构造临时内存流
{ IFormatter formatter = new BinaryFormatter(); //构造一个序列化格式化器 formatter.Context = new StreamingContext(StreamingContextStates.Clone); formatter.Serialize(stram, original); //将流对象序列化到内存流中 stram.Position = ; //反序列化之前,定位到内存流德尔起始位置 return formatter.Deserialize(stram); //将对象图反序列化成一组新的对象图,
//并且返回对象图(深拷贝)的根
}
}