案例一:

翻转Sting中的字符序列

  1. package test;
  2. public class Main {
  3. public static void main(String[] args) {
  4. //测试
  5. String str = "abcdef";
  6. System.out.println("===交换前===");
  7. System.out.println(str);
  8. try {
  9. str = reverse(str, 1, 41);
  10. } catch (Exception e) {
  11. System.out.println(e.getMessage());
  12. return;
  13. }
  14. System.out.println("===交换后===");
  15. System.out.println(str);
  16. }
  17. /**
  18. * (1) 将字符串中指定部分进行反转。比如将"abcdef"反转为"aedcbf"
  19. * (2) 编写方法 public static String reverse(String str, int start , int end) 搞定
  20. * 思路分析
  21. * (1) 先把方法定义确定
  22. * (2) 把 String 转成 char[] ,因为char[] 的元素是可以交换的
  23. */
  24. public static String reverse(String str, int start, int end) {
  25. if(!(str != null && start >= 0 && end > start && end < str.length())) {
  26. throw new RuntimeException("参数不正确");
  27. }
  28. char[] chars = str.toCharArray();
  29. char temp = ' '; //交换辅助变量
  30. for (int i = start, j = end; i < j; i++, j--) {
  31. temp = chars[i];
  32. chars[i] = chars[j];
  33. chars[j] = temp;
  34. }
  35. //使用chars 重新构建一个String 返回即可
  36. return new String(chars);
  37. }
  38. }

image.png

案例二:

输入用户名、密码、邮箱,如果信息录入正确,则提示注册成功,否则生成异常对象要求:

  1. 用户名长度为2或3或4
  2. 密码的长度为6,要求全是数字isDigital
  3. 邮箱中包含@和、并且@在.的前面
  1. package test;
  2. public class Main {
  3. public static void main(String[] args) {
  4. String name = "abc";
  5. String pwd = "123456";
  6. String email = "ti@i@sohu.com";
  7. try {
  8. userRegister(name, pwd, email);
  9. System.out.println("恭喜你,注册成功~");
  10. } catch (Exception e) {
  11. System.out.println(e.getMessage());
  12. }
  13. }
  14. /**
  15. * 输入用户名、密码、邮箱,如果信息录入正确,则提示注册成功,否则生成异常对象
  16. * 要求:
  17. * (1) 用户名长度为2或3或4
  18. * (2) 密码的长度为6,要求全是数字 isDigital
  19. * (3) 邮箱中包含@和. 并且@在.的前面
  20. * <p>
  21. * 思路分析
  22. * (1) 先编写方法 userRegister(String name, String pwd, String email) {}
  23. * (2) 针对 输入的内容进行校核,如果发现有问题,就抛出异常,给出提示
  24. * (3) 单独的写一个方法,判断 密码是否全部是数字字符 boolean
  25. */
  26. public static void userRegister(String name, String pwd, String email) {
  27. //再加入一些校验
  28. if (!(name != null && pwd != null && email != null)) {
  29. throw new RuntimeException("参数不能为null");
  30. }
  31. //过关
  32. //第一关
  33. int userLength = name.length();
  34. if (!(userLength >= 2 && userLength <= 4)) {
  35. throw new RuntimeException("用户名长度为2或3或4");
  36. }
  37. //第二关
  38. if (!(pwd.length() == 6 && isDigital(pwd))) {
  39. throw new RuntimeException("密码的长度为6,要求全是数字");
  40. }
  41. //第三关
  42. int i = email.indexOf('@');
  43. int j = email.indexOf('.');
  44. if (!(i > 0 && j > i)) {
  45. throw new RuntimeException("邮箱中包含@和. 并且@在.的前面");
  46. }
  47. }
  48. //单独的写一个方法,判断 密码是否全部是数字字符 boolean
  49. public static boolean isDigital(String str) {
  50. char[] chars = str.toCharArray();
  51. for (int i = 0; i < chars.length; i++) {
  52. if (chars[i] < '0' || chars[i] > '9') {
  53. return false;
  54. }
  55. }
  56. return true;
  57. }
  58. }

image.png

案例三:

split()字符分割

注意:

“|”、“.”、“”、“+”、“\”等不是有效的模式匹配规则表达式,是转义字符,使用split()方法时必须得加”\“才行。(*加转义字符

  1. package test;
  2. public class Main {
  3. public static void main(String[] args) {
  4. String name = "Wei tian Yu";
  5. printName(name);
  6. }
  7. /**
  8. * 编写方法: 完成输出格式要求的字符串
  9. * 编写java程序,输入形式为: Wei tian Yu的人名,以Yu,Wei .T的形式打印
  10. * 出来 。其中.S是中间单词的首字母
  11. * 思路分析
  12. * (1) 对输入的字符串进行 分割split(" ")
  13. * (2) 对得到的String[] 进行格式化String.format()
  14. * (3) 对输入的字符串进行校验即可
  15. */
  16. public static void printName(String str) {
  17. if(str == null) {
  18. System.out.println("str 不能为空");
  19. return;
  20. }
  21. String[] names = str.split(" ");
  22. if(names.length != 3) {
  23. System.out.println("输入的字符串格式不对");
  24. return;
  25. }
  26. String format = String.format("%s,%s .%c", names[2], names[0], names[1].toUpperCase().charAt(0));
  27. System.out.println(format);
  28. }
  29. }

image.png

案例四:

字符统计

  1. package test;
  2. public class Main {
  3. public static void main(String[] args) {
  4. String str = "WTY2002 Keep";
  5. countStr(str);
  6. }
  7. /**
  8. * 输入字符串,判断里面有多少个大写字母,多少个小写字母,多少个数字
  9. * 思路分析
  10. * (1) 遍历字符串,如果 char 在 '0'~'9' 就是一个数字
  11. * (2) 如果 char 在 'a'~'z' 就是一个小写字母
  12. * (3) 如果 char 在 'A'~'Z' 就是一个大写字母
  13. * (4) 使用三个变量来记录 统计结果
  14. */
  15. public static void countStr(String str) {
  16. if (str == null) {
  17. System.out.println("输入不能为 null");
  18. return;
  19. }
  20. int strLen = str.length();
  21. int numCount = 0;
  22. int lowerCount = 0;
  23. int upperCount = 0;
  24. int otherCount = 0;
  25. for (int i = 0; i < strLen; i++) {
  26. if(str.charAt(i) >= '0' && str.charAt(i) <= '9') {
  27. numCount++;
  28. } else if(str.charAt(i) >= 'a' && str.charAt(i) <= 'z') {
  29. lowerCount++;
  30. } else if(str.charAt(i) >= 'A' && str.charAt(i) <= 'Z') {
  31. upperCount++;
  32. } else {
  33. otherCount++;
  34. }
  35. }
  36. System.out.println("数字有 " + numCount);
  37. System.out.println("小写字母有 " + lowerCount);
  38. System.out.println("大写字母有 " + upperCount);
  39. System.out.println("其他字符有 " + otherCount);
  40. }
  41. }

image.png

案例五:

  1. package test;
  2. public class Main {
  3. public static void main(String[] args) {
  4. String s1 = "WTY2002";
  5. Animal a = new Animal(s1);
  6. Animal b = new Animal(s1);
  7. System.out.println(a == b);
  8. System.out.println(a.equals(b));
  9. System.out.println(a.name == b.name);
  10. String s4 = new String("WTY2002");
  11. String s5 = "WTY2002";
  12. System.out.println(s1 == s4);
  13. System.out.println(s4 == s5);
  14. String t1 = "hello" + s1;
  15. String t2 = "helloWTY2002";
  16. System.out.println(t1.intern() == t2);
  17. }
  18. }
  19. class Animal {
  20. String name;
  21. public Animal(String name) {
  22. this.name = name;
  23. }
  24. }

image.png