运行 eclipse 中的 pde 文件

run pde file in eclipse

.pde 文件的语言是什么?是C还是java?我要运行these files of code

This file有错误,因为widthheight变量没有初始化。

我想知道我运行这段代码在Processing Development Environment中是否有错误?

如何在 eclipse 中 运行 它?

What is the language of .pde file? Is it C or java? I want to run these files of code.

一个.pde文件是一个可以被Processing编辑器打开的文件。它是用 Processing 语言编写的,然后 Processing 编辑器将其编译为 Java 到 运行。

您可以从 here 下载 Processing 编辑器作为 Processing 的一部分。这是一个 .zip 文件。只需将其解压缩到任何地方,然后进入该目录并打开 processing.exe(在 Windows 上)以打开 Processing 编辑器。从那里你可以打开一个 .pde 文件。这也将建立文件关联,因此双击 .pde 文件也将打开处理编辑器。

您还可以将 .pde 文件编辑为纯文本(只需在您喜欢的文本编辑器中打开它),但如果没有 Processing 编辑器,您将无法 运行 它。

This file has an error because width and height variables are not initialized.

正在处理为您初始化 widthheight 变量。

I want to know whether I run this code in Processing Development Environment if I have an error?

我敢打赌,如果您在 Processing 编辑器中 运行 它,错误就会消失。当然,这只是一个猜测,因为您没有具体告诉我们错误是什么,但我知道 Processing 会为您初始化 widthheight 变量。

How can I run it in eclipse?

您将创建一个使用 Processing 作为库的项目,然后编写执行草图的代码。这已在本网站之前进行过介绍。但我建议您只使用 Processing 编辑器,直到您更好地了解自己在做什么。