• JAVA学习 判断一个字符或字符是否位于另一个字符串的末尾


    String a ="abcdefbg";
    Scanner scan = new Scanner(System.in);                 //输入扫描器
    String b = scan.next();                                        //输入字符
    int c = a.lastIndexOf(b);                                       //判断输入的字符串在需要判断的字符串中的位置
    int d = a.length();
    int e = b.length();
    if(d-c==e)                                                            //根据字符串和位置的长度相减,得出结论
    {
    System.out.println("输入的字符或字符串位于最后一位");
    }
    else
    {
    System.out.println("输入的字符或字符串不位于最后一位");
    }

  • 相关阅读:
    Java's Volatile Keyword
    reflection
    Spring
    Stack
    Set
    Vector & ArrayList
    CreateFileDemo
    session原理
    multithreadingDemo
    REST风格
  • 原文地址:https://www.cnblogs.com/xt641151246/p/5491870.html
Copyright © 2020-2023  润新知