You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
问题已解决。
public int next(boolean back){
position += 1;
if (position > bookLen){
position = bookLen;
return -1;
}
char result = current();
if (back) {
position -= 1;
}
return result;
}
添加txt文档,大部分的最后一页的末尾会多出一个字符。这个字符大概是文章的第一个字,大佬帮看下,如何解决。
The text was updated successfully, but these errors were encountered: