摘要:
public class Demo02 { public static void main(String[] args) { int i1 = 128; int i2 = 129; System.out.println(Integer.toBinaryString(i1)); System.out. 阅读全文
摘要:
看到网上一道题目,私有化构造方法后,该类能不能被实例化。答案比较尴尬,直接实例化肯定是不行了,因为构造方法被私有化了,也就意味着在别的类中不能直接实例化该对象了, 难道真的没办法了吗?网上查询了一下资料,恍然大悟,有一种东西叫做静态方法,不需要实例化直接调用。具体实现如下: public class 阅读全文