Mono 把 .NET 应用程序移植到 Linux(3)
- UID
- 1066743
|
Mono 把 .NET 应用程序移植到 Linux(3)
使用非 Mono 库的代码使用 Mono 平台更有说服力的原因是能够使用已有的、可能不属于 C# 库的 C# 代码。下面是这样的一个例子(也可以从下面的 部分下载清单 2 PInvokeExample.cs 和可执行文件 PInvokeExample.exe)。
提供这种能力的机制是 Platform Invocation Facility(缩写为 pinvoke)。
清单 2. 使用 Platform Invocation Facility1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| /* Platform Invocation Facility Example
This code is intended to illustrate P/Invoke.
For out purposes we will access a c shared library.
*/
using System;
// This is a lot of the magic!
using System.Runtime.InteropServices;
/* Class illustrates pinvoking existing c library code */
public class PInvokeExample
{
/* Notifying the runtime that we need an
additional mathematics library, libm.so */
[DllImport("libm")]
/* Here we define the external function we will
be using from the library,
You must declare these methods to be static.
The function signature you provide must match the
signature in the external library!
*/
static extern double sqrt ( double element );
public static void Main ()
{
Console.WriteLine("The square root of 100.0 is {0}.", sqrt(100.0));
}
}
|
从上述简化的代码中可以看出,只需要告诉 Mono 编译器使用什么库(在 DLLImport 一行中完成)并提供要使用的函数的原型。如果在 Linux 系统上编译这个类,控制台将显示正确的结果。
图 2. 使用非 C# 库Mono 的其他优点Mono 的运行时还可以嵌入到应用程序中,从而简化打包和发送。此外,Mono 项目还提供集成开发环境、调试器和文档浏览器。
如果希望进一步了解 C# 和 .NET 框架,下面列出了各种 ,包括各种用于简化开发过程的集成开发环境如 Eclipse 和 Monodevelop 的参考资料。
如果对使用 Mono 开发图形化的应用程序感兴趣,强烈推荐“Mono: A Developers Notebook”,这是一篇更深入的教程()。
Novell 程序员仍然在为 Mono 增加新的功能,提供减轻开放源码开发人员工作负担的工具。我希望本文能够帮助您对 Mono 项目有足够的认识,以便在下一个 Linux 开发项目中使用它。 |
|
|
|
|
|