IronPython类
不是.NET类。它们是IronPython.Runtime.Types.PythonType的实例,它是Python元类。这是因为Python类是动态的,并且支持在运行时添加和删除方法,而.NET类则无法做到这一点。
要在C#中使用Python类,您将需要使用ObjectOperations类。此类允许您使用语言本身的语义对python类型和实例进行 *** 作。例如,它在适当时使用魔术方法,将整数自动提升为long等。您可以通过查看源代码或使用反射器来了解有关ObjectOperations的更多信息。
这是一个例子。Calculator.py包含一个简单的类:
class Calculator(object): def add(self, a, b): return a + b
您可以从.NET 4.0 C#之前的代码中使用它,如下所示:
scriptEngine engine = Python.CreateEngine();scriptSource source = engine.CreatescriptSourceFromFile("Calculator.py");scriptScope scope = engine.CreateScope();ObjectOperations op = engine.Operations;source.Execute(scope); // class object createdobject klaz = scope.GetVariable("Calculator"); // get the class objectobject instance = op.Call(klaz); // create the instanceobject method = op.GetMember(instance, "add"); // get a methodint result = (int)op.Call(method, 4, 5); // call method and get result (9)
您将需要引用程序集IronPython.dll,Microsoft.scripting和Microsoft.scripting.Core。
C#4通过 新的 动态类型使此 *** 作变得更加容易。
scriptEngine engine = Python.CreateEngine();scriptSource source = engine.CreatescriptSourceFromFile("Calculator.py");scriptScope scope = engine.CreateScope();source.Execute(scope);dynamic Calculator = scope.GetVariable("Calculator");dynamic calc = Calculator();int result = calc.add(4, 5);
如果将Visual Studio 2010或更高版本用于NuGet支持,则只需执行此 *** 作即可下载并引用适当的库。
Install-Package IronPython
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)