我正在尝试使用netbeans构建一个库,我正在构建: 新项目...... Java ... Java应用程序:
package somma;
public class Somma {
public static int somma(int a, int b) {
int s = a + b;
return s;
}
}
有了这个主要的
package somma;
public class Main {
public static void main(String[] args) {
int a = 1;
int b = 2;
int s = Somma.somma(a, b);
System.out.println(s);
}
}
之后,右键单击项目...属性... Buid ...打包....再次点击项目并清理和构建。现在我创建了一个Somma.jar,为了尝试新的库,我构建了一个exmple项目:
package uselibrary;
import static somma.Somma.somma;
public class UseLibrary {
public static void main(String[] args) {
int a = 1;
int b = 2;
int s = somma(a, b);
System.out.println(s);
}
}
运行正常,但有问题,当我导入库时,我想避免使用此名称 import static somma.Somma.somma; 我想用此名称更改 import somma; 我怎么能这样做?
答案 0 :(得分:0)
好的,试试这个编辑
package somma;
public class Somma {
public int somma(int a, int b) {
int s = a + b;
return s;
}
}
和
package uselibrary;
import somma.Somma;
public class useLibrary {
public static void main(String[] args) {
Somma som = new Somma();
int a = 1;
int b = 2;
int s = som.somma(a, b);
System.out.println(s);
}
}