开发者

Is it possible that Java String.split can return a null String[]

Is it possible for split to return a null String[]? I am curious as I want to try to be as defensive as possible in my code without having unnecessary checks. The cod开发者_StackOverflow社区e is as follows:

String[] parts = myString.split("\\w");  

do I need to perform a null check before I use parts post splitting?


It never returns null. You should always check the javadoc of the method if you are not sure. For example String#split(String) says

This method works as if by invoking the two-argument split method

...and String#split(String,int) says:

If the expression does not match any part of the input then the resulting array has just one element, namely this string.

From Javadoc you can also find out what kind of exceptions can happen and more importantly why were those exceptions thrown. Also one very important thing to check is if the classes are thread safe or not.


I recommend you download the Java source code for those times when the API is unclear. All the answers here just tell you the answer but you should really see for yourself. You can download the Java source code from here (look near the bottom of the page).

By following the source code you'll end up at String[] Pattern.split(CharSequence input, int limit). The return value comes from a non-null ArrayList on which toArray is called. toArray does not return null: in the event of an empty list you'll get an empty array back.

So in the end, no, you don't have to check for null.


No, you don't need to check for null on the parts.


Split method calls the Patter.split method which does this in the beginning of the method:

ArrayList<String> matchList = new ArrayList<String>();

And at the end does matchList.toArray() to return an Array.

So no need to test of nulls.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜