我有两个文件
在 project1 中有一个名为 test.java 的文件:
public class test {
public static void main(String[] args) {
sayHello();
}
public static void sayHello() {
System.out.println("MyTest says hello!");
}}
在 project2 中有一个名为 test2.java 的文件:
public class test2
{
public static void main(String[] args)
{
sayHello();
}
public static void sayHello() {
System.out.println("MyTest2 says hello!");
}}
在这里,我需要在不使用 maven 的情况下将 test(在项目 1 中)的类文件链接到 test2(这是我的 project2)。我该如何进行?