最新回答 / helloworld2008
大家应该看仔细文档说明啊。remove返回值是Boolean类型,return:true if this list contained the specified element如果List中含有这个要删除的元素那就返回true。否则返回false。。。。
2016-02-28
最赞回答 / SHsama
都把问题想复杂了,你想啊throw是抛出异常,有抛就有接,如果说test1()中只有throw抛出异常而没有被捕获的话编译当然报错,所以在test2()中老师就用try。。catch捕获了test1()抛出的异常“喝车别开酒”,进而利用这个异常来触发另外一个异常(就是所谓的异常链,一个异常导致另一个异常的发生),即“司机一滴酒,亲人两行泪”。那为什么test2没有throws声明,而“throw newExc”却能编译通过。?那是因为test2()调用了test1()中所抛出的异常了,换句话来说就是tes...
2016-02-26
已采纳回答 / 慕工程1651139
<...code...>public class HelloWorld { public static void main(String[] args) { // 定义一个字符串 String s = "aljlkdsflkjsadjfklhasdkjlflkajdflwoiudsafhaasdasd"; String y="a"; ...
2016-02-25