Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在几个不同的 Java 项目中使用方法 A。有没有办法只编写一次方法,然后根据需要从不同的 Java 项目中调用它?
使用该方法创建一个类。为这个类创建一个 jar。在所有项目中使用这个 jar。
是的。定义public类并至少定义public或protected方法。然后将该类导入新项目的类中并使用它。即使默认类的 default方法public是. 所以使用公共类和公共或受保护的方法,最后用这个文件创建一个 jar 并将这个 jar 文件添加到你的项目中使用。protectedpublic/protected
public
protected
default
public/protected