0

如何保护在另一个包中使用的类(来自不继承的类)从外部实例化?这在Java中甚至可能吗?

4

2 回答 2

1

使构造函数受保护

public class ProtectClass {

    protected ProtectClass() {
        // TODO Auto-generated constructor stub
    }
}
于 2012-09-29T04:39:07.693 回答
0

好吧,抽象类不能被实例化,但这可能不是你要找的……我从来没有听说过这是可能的。

于 2012-09-29T04:34:51.057 回答