对String类添加一个自定义方法contain_A(),用来判断字符串中是否包含大写的A,并测试
时间: 2023-02-22 19:30:34 浏览: 82
java判断字符串包含某个字符的实例方法
在 Java 中,你可以通过扩展 String 类,并在其中添加一个名为 contain_A() 的自定义方法,来判断字符串中是否包含大写的 A。
下面是一个示例代码:
```
public class MyString extends String {
public boolean contain_A() {
return this.contains("A");
}
}
public class Test {
public static void main(String[] args) {
MyString str = new MyString("Hello, World!");
System.out.println(str.contain_A()); // 输出 false
}
}
```
在这段代码中,我们通过继承 String 类并重写了 contain_A() 方法,该方法通过调用 this.contains("A") 来判断该字符串是否包含大写的 A。在 main 方法中,我们通过创建一个 MyString 类型的对象并调用其 contain_A() 方法,来测试这个方法是否正常工作。
阅读全文