Java中的contains()方法可以用于检测某个字符串是否包含指定的字符序列。它的使用方式如下:
使用contains()方法的通用格式如下:
boolean result = 字符串.contains(待检查的字符序列);
其中,字符串是要检查的字符串,待检查的字符序列是要搜索的字符序列。contains()方法将返回一个boolean值,如果字符串包含待检查的字符序列,则返回true;否则返回false。
例子:
String str = "Hello World";
boolean contains = str.contains("Hello");
System.out.println(contains); // 输出结果为true
boolean contains2 = str.contains("Java");
System.out.println(contains2); // 输出结果为false
在使用contains()方法时,可以根据需要使用变量或直接使用字符串常量作为待检查的字符序列参数。