您可以使用 charAt() 方法读取字符串中的字符。要在给定字符串中查找元音,您需要将字符串中的每个字符与元音字母进行比较。示例实时演示 public class FindingVowels { public static void main(String args[]) { String str = new String("Hi Welcome to Tutorialspoint"); for(int i=0; i
toString() 方法以字符串格式返回当前对象。示例实时演示 public class Test { public static void main(String args[]) { Test obj = new Test(); System.out.println(obj.toString()); System.out.println("Hello"); } }输出Test@2a139a55 Hello