String方法的应用:
Posted yang-1yang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String方法的应用:相关的知识,希望对你有一定的参考价值。
package com.tets;
public class Demo2 {
public static void main(String[] args){
String str="Hello world";
String str2="hello world";
int len=str.length();
boolean b=str.startsWith("H");
boolean c=str2.contains("Hello");
boolean d=str2.endsWith("d");
System.out.println("字符串的长度是"+len);
System.out.println(b+c+d);
}
}
以上是关于String方法的应用:的主要内容,如果未能解决你的问题,请参考以下文章