前端之家收集整理的这篇文章主要介绍了
如何测试C#引用参数参考相同的项目,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在C#中给出一个具有以下签名的
函数
public static void Foo(ref int x,ref int y)
如果函数调用使用
int A = 10;
Foo(ref A,ref A)
在函数Foo里面有可能测试x和y参数引用相同的变量吗? x和y的简单等效测试是不够的,因为在两个不同变量具有相同值的情况下也是如此.
如果您愿意使用不安全的
代码,可以比较底层的变量地址:
public static bool Foo(ref int a,ref int b)
{
unsafe
{
fixed (int* pa = &a,pb = &b)
{
// return true iff a and b are references to the same variable
return pa == pb;
}
}
}
(编辑为从方法签名中删除不安全,基于@Michael Graczyk的评论.)
原文链接:https://www.f2er.com/csharp/94105.html