Exception in thread "main" java.lang.NullPointerException
at com.imooc_collection.SetTest.testSetContains(SetTest.java:44)
at com.imooc_collection.SetTest.main(SetTest.java:115)
一脸懵逼,出现异常了
at com.imooc_collection.SetTest.testSetContains(SetTest.java:44)
at com.imooc_collection.SetTest.main(SetTest.java:115)
一脸懵逼,出现异常了
2016-04-12
不是说set里面不能出现相同元素吗?怎么还俩个indexof()和lastindexof(),表示不懂
2016-04-10
// 从后往前每隔三位插入逗号
int length = str.length();
while(length>3){
length=length-3;
str.insert(length,",");
}
int length = str.length();
while(length>3){
length=length-3;
str.insert(length,",");
}
2016-04-09