孙Cloud需要了解的各种知识小笔记(随时更新)

tech2024-07-14  63

小备忘录

TCP的三次握手二叉树关于遍历字符串 /遍历获取字符串中的每一个字符/ /*public final char charAt(int index) * 读取当前给定索引处的字符 */ Scanner sc = new Scanner(System.in); String str = sc.nextLine();//输入字符串,nextLine()遇到空格不会终止输入;next()遇到空格会终止输入 for(int i =0;i<str.length();i++) { char ch = str.charAt(i); System.out.println(str.charAt(i)); }
最新回复(0)