作者 钟来

初始提交

... ... @@ -71,6 +71,7 @@ public class StringPointer implements Serializable, CharSequence, Comparable<Str
* @date 2017年1月5日 下午3:13:49
*/
public boolean nextStartsWith(int i, StringPointer word){
// 是否长度超出
if(word.length > length - i){
return false;
... ...