- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读一本有关 Java 的书,并发现了以下源代码。
//This example demonstrates how to search multiple occurences of a search string
public class SearchString3 {
public static void main(String[] s) {
String str = "I am a student. I am preparing for OCPJP";
int fromIndex = 0;
while(str.indexOf("am", fromIndex) > -1) {
fromIndex = str.indexOf("am", fromIndex);
System.out.println("Substring \"am\" occrs at index: " + fromIndex);
fromIndex++;
}
}
}
我很困惑“fromIndex”变量是如何递增的。看起来 while 循环中的代码只运行两次,但它必须运行整个字符串长度。此代码来自 Sharma 和 Ganesh 的 Oracle 认证专业 Java SE 7 程序员考试 1Z0-804 和 1Z0-805 的第 207 页。
fromIndex 变量是如何更新的?看起来 while 循环除了两次之外不会为真。 while 循环如何对字符串的每个字符执行?有谁知道如何添加一些代码来调试这个?对不起,我的大脑今天不工作,我昨晚没睡好。
最佳答案
第一轮:
fromIndex = str.indexOf("am", fromIndex); // search from index 0, result is 2, I (a)m a student, character (a)
System.out.println("Substring \"am\" occrs at index: " + fromIndex); // print ---> Substring "am" occrs at index: 2
fromIndex++; // increment fromIndex to 3
第二轮:
fromIndex = str.indexOf("am", fromIndex); // search from index 3, I a(m) a student, character (m)
System.out.println("Substring \"am\" occrs at index: " + fromIndex); // print ---> Substring "am" occrs at index: 18
fromIndex++; // increment fromIndex to 19, I a(m) prepa, the m character
完成。
关于java - 对简单的 While 循环感到困惑 - 躲在 table 下面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52043496/
我正在尝试学习Rust。我正在阅读一本书online,该书实现了unix程序cat。现在,我试图读取作为像cargo run file1.txt file2.txt这样的参数传递的文件的内容,但是程序
我在 GHC 8.0.1 中遇到了一个带有种类索引 (?) GADT 的奇怪情况,其中在类型与种类签名中引入 foralls 会产生不同的类型检查行为。 考虑以下数据类型: {-# LANGUAGE
我正在使用 Perl 5.10 开发应用程序,HTML::Mason和 Apache 2.2。这是我第一次在大型项目中使用 Perl 5.10。我每隔一段时间就会出现奇怪的行为。应用程序因一个非常奇怪
我正在尝试将文件上传到aws中的rust中,因为我使用的是 rusoto_s3 的s3 rust客户端,当这些部分从单个线程发送时,我设法使分段上传代码正常工作不是我想要的,我想上传大文件,并且希望能
我是一名优秀的程序员,十分优秀!