public class A{//A为工具类,全静态方法
public static String method1(){
return "a";
}
。。。
}
public class B{//B也为工具类,全静态方法
public static String method1(){
return "b";
}
。。。
}
//增加一个Toll类,为一个工具集合类
public class Toll{
public static A a=new A();
public static B b=new B();
}
这样 只需调用Tool.a.method1()....就可以调用A的method1()方法了。
问题是:
1.这样写好吗?并发高时性能高吗?
2.这样写的话,调用时eclipse提示The static method method1() from the type A should be accessed in a static way。怎么避免?问题补充:
我就想 模拟 System.out.print的这种写法。方便开发。
这样做 有意义啊,方便其他开发人员调用。不这样的话,其他人就不知道还有A 或B这些工具类可以调用