gpt4 book ai didi

Java 程序在文件夹之间拆分

转载 作者:行者123 更新时间:2023-12-02 09:41:23 24 4
gpt4 key购买 nike

所以我想开发一个小型游戏引擎。它具有供用户使用的主引擎类,例如 Vector 和 Actor。由于我只需要一次引擎,所以我想让游戏使用相同的引擎,并且为了避免将所有游戏放在同一个 jar 中,我打算将它们放在单独的文件夹中,一个包含引擎,然后是每个游戏的文件夹。然后引擎应该能够加载例如。来自其他文件夹的播放器类并使用它。

我认为一种解决方案可以是在运行时编译游戏文件夹。但问题是这些文件相互依赖,并且依赖于已加载到 JVM 中的已编译类。对于这种方法:

作为一个例子,我们有三个类:来自引擎的 Actor,一个扩展用户编写的引擎 Actor 类的 Player,以及第三个类,即由用户编写的项目,在 Player 中生成,但同样需要对 Player 进行编译,这意味着它们不能一个接一个地编译。

据我了解,当我们运行程序时,Actor 已经在 J​​VM 中编译了。现在我们知道一个文件夹,其中包含所有要编译的类,其中 Player 依赖于 JVM 中已编译的类,以及该文件夹中未编译的类,后者依赖于 Player。

现在我想编译 Player 类,因此我们还必须编译 Item,然后实例化 Player,以便我们可以四处移动并生成项目。

这是我的意思的基本示例:

// already compiled in eg. executing jar file 
class MainStuff
{
public static void main(String args[])
{
String FolderOfUncompiledClasses = "Some/folder/to/src/";
Class<?>[] CompiledClasses = CompileFolderContents(FolderOfUncompiledClasses);
// iterating through compiled classes
for (Class<?> C : CompiledClasses)
{
// if we have an Actor class, we create a new instance
if (C.isAssignableFrom(Actor.class))
{
try
{
C.getDeclaredConstructor().newInstance();
} catch (InstantiationException | IllegalAccessException | IllegalArgumentException
| InvocationTargetException | NoSuchMethodException | SecurityException e)
{
e.printStackTrace();
}
}
}
}

// should compile all the files and returns the classes of the compiled java files

private static Class<?>[] CompileFolderContents(String Folder)
{
File[] JavaFiles = new File(Folder).listFiles();

Class<?>[] CompiledClasses = new Class<?>[JavaFiles.length];

for (int i = 0; i < JavaFiles.length; i++)
{
Class<?> CompiledClass = DoCompilationStuff(JavaFiles[i]);
CompiledClasses[i] = CompiledClass;
}
return CompiledClasses;
}

// this should effectively compile the class which it can both use non compiled
// java files in the folder and already compiled classes
private static Class<?> DoCompilationStuff(File ToCompile)
{
return null;
}
}

// already compiled in eg. executing jar file
class Actor
{
int X, Y;
}

在驱动器上的某个文件夹中:

// not compiled
class Player extends Actor
{
public Player()
{
// uses other non compiled class
new Item();
}
}

// not compiled
class Item
{
// Also uses Actor so we can't compile them in series
public Item(Player P)
{
}
}

我尝试过使用 javac 命令,但无法让它以某种方式处理整个文件夹结构。

我希望我能以合乎逻辑的方式解释它,如果这种方法没有意义。这只是一个想法,如果您有更好的方法,我会很高兴听到。

非常感谢!

最佳答案

如果您确实必须使用javac,请将类保留在相同的package中和目录。这将简化构建过程,而不必使用 -cp 参数来指定多个不同目录中存在的类路径。

我建议您应该使用构建系统(例如)来设置项目,而不是手动编译。 Gradle 。如果你看Building Java Applications Gradle 文档称它应该需要大约 10 分钟,您应该拥有所需的一切:构建、测试和打包。

关于Java 程序在文件夹之间拆分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57039797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com