c# – 用ref或out参数编写iron python方法

前端之家收集整理的这篇文章主要介绍了c# – 用ref或out参数编写iron python方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要将以下C#方法转换为相同的IronPhyton方法
private void GetTP(string name,out string ter,out int prov)
{
  ter = 2;
  prov = 1;
}

解决方法

在python中(因此在IronPython中)你不能改变一个不可变的参数(比如字符串)

因此,您无法直接将给定代码转换为python,但您必须执行以下操作:

def GetTP(name):
  return tuple([2,1])

当你打电话时,你必须做:

retTuple = GetTP(name)
ter = retTuple[0]
prov = retTuple[1]

当你在IronPython中调用包含out / ref参数的C#方法时,这是相同的行为.

事实上,在这种情况下,IronPython返回out / ref参数的元组,如果返回值是元组中的第一个.

编辑:
实际上可以用out / ref参数覆盖一个方法,看看这里:

http://ironpython.net/documentation/dotnet/dotnet.html#methods-with-ref-or-out-parameters

原文链接:https://www.f2er.com/csharp/99112.html

猜你在找的C#相关文章