Vala(类 C# 语言)编译为 C?

发布于 2024-07-15 08:29:05 字数 148 浏览 6 评论 0原文

我是一名 C# 开发人员,偶然发现了一种名为 vala 的新 Linux 编程语言。 它的语法与 C# 几乎完全相同,这非常棒。 我从来都不是 Mono 的忠实粉丝。 这允许程序员用 C# 风格的语言编写 GTK+ 应用程序。 我的问题是:vala 是否被编译成 C 语言?

I'm a C# developer who stumbled across a new programming language for linux called vala. It has almost exactly the same syntax as C#, which is awesome. I never really was a big fan of Mono. This allows programmers to write GTK+ apps in a C# style language. My question is: Does vala get compiled into C?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

极致的悲 2024-07-22 08:29:06

是的,Vala 直接编译为 C。来自 Vala 主页:

valac 从 Vala 源文件生成 C 源文件和头文件,就像您直接用 C 语言编写库或应用程序一样。从 C 应用程序中使用 Vala 库与使用 Vala 库看起来没有什么不同任何其他基于 GObject 的库。 不会有 vala 运行时库,应用程序可以使用其 tarball 分发生成的 C 代码,因此用户不需要额外的运行时或构建时依赖项。

您可以在此处阅读更多相关信息(还可以获取教程、邮件列表等)。 这是一个非常有趣的项目。

Yes, Vala is compiled directly to C. From the Vala homepage:

valac produces C source and header files from Vala source files as if you've written your library or application directly in C. Using a Vala library from a C application won't look different than using any other GObject-based library. There won't be a vala runtime library and applications can distribute the generated C code with their tarballs, so there are no additional run- or build-time dependencies for users.

You can read more about it here (and also get tutorials, mailing lists, et cetera). It's quite an interesting project.

黒涩兲箜 2024-07-22 08:29:06

来自维基百科

Vala 不是直接编译为汇编程序或中间语言,而是编译为 C,然后使用平台的标准 C 编译器进行编译。

From Wikipedia:

Rather than being compiled directly to assembler or to an intermediate language, Vala is compiled to C which is then compiled with the platform's standard C compiler.

药祭#氼 2024-07-22 08:29:06

正如 John 和 Chris 指出的那样,Vala 确实被编译为 C。

事实上,您可以通过使用 -C (或 --ccode< /code>) 标志。

As John and Chris pointed out, Vala does indeed get compiled to C.

In fact, you can see the generated C code by running the Vala compiler with the -C (or --ccode) flag.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文