我一直在徘徊如何制作可在整个Java eclipse中使用的自定义类。例如,如果您编写任何基本程序,则可以调用预定的类,就像只需键入Math.abs(x);即可。不必费心去输入
if (x<0) x = x * -1;
else x = x;
我想为基本功能设计自己的自定义类,因为我经常在任何程序中使用我的基本功能,无论它们是否在同一项目中。
答案 0 :(得分:0)
可以在整个Java eclipse中使用的自定义类...
您可以在导入任何类并为它的数据定义正确的可见性后立即对它进行操作。...
class MyRandom{
public static int MultiplybyTwo(int number){
return number * 2;
}
public static int DividebyTwo(int number){
return number / 2;
}
}
import MyRandom;
class Test{
public static void main(string[] args){
int x = MyRandom.MultiplyByThow(9);
System.out.println("the result is: " + x);
}
}
另一方面,这没有任何意义:
else x=x;