四种权限修饰符 Java中有四种权限修饰符 public > protected > (default) >private 同一个类(我自己) YES YES YES YES同一个包(我儿子) YES YES YES NO不同包子类(我邻居)YES YES NO NO不同包非子类(陌生人)YES NO NO NO 注意事项:(default)并不是关键字“default”,而是根本不写 { public int num = 37; protected int num = 37; int…
Java 四种权限修饰符访问权限 public protected (default) private 同一个类(我自己) yes yes yes yes 同一包(我邻居) yes yes yes no 不同包子类(我的儿子) yes yes no no 不同包非子类(陌生人) yes no no no…
1.throws和throw的区别 throws使用在函数外,是编译时的异常,throw使用在函数内,是运行时的异常 使用方法 public int method(int[] arr) throws NullPointerException{} public int method(int[] arr){ if(arr==null){ throw new NullPointerException (“数组的引用不能为空”); } } throws 抛出的是异常类,可以抛出多个,用逗号隔开,thro…
总的概括:public > protected > (default) > private 细分见下表格: 权限修饰符 public protected (default) private 同一个类(我自己) YES YES YES YES 同一个包(我邻居) YES YES YES NO 不同包子类(我儿子) YES YES NO NO 不同包非子类(陌生人) YES NO NO NO [注意:(default)不是关键字"default",而是什么都不写.]…