JShell 是一个交互式命令行工具,用于实现简单的语句,如表达式、类、方法、字段、接口等。String 类是内置 java.lang 包的一部分,并提供了几种用于常见文本处理的方法。1) 字符串实用程序:String 提供了几种内置的实用程序方法。indexOf()、lastIndexOf()、startsWith()、endsWith()、isEmpty()、equals()、equalsIgnoreCase() 等方法是字符串实用程序的一部分。在下面的代码片段中,我们在 JShell 工具中实现了字符串实用程序方法。片段 1jshell> String str = "JShell is a new feature in Java9"; str ==> "JShell is a new feature in Java9" jshell> str.indexOf("new") $4 ==> 12 ... 阅读更多