美文网首页
基础知识点

基础知识点

作者: 未来好好生活 | 来源:发表于2021-11-05 12:03 被阅读0次

    String中的方法

    1. equals 比较字符串的内容,严格区分大小写
    public class StringTest1 {
        public static void main(String[] args) {
            String username="zhanghao";
            String password="mima";
    
            for (int i = 0; i <3 ; i++) {
    
               Scanner sc=new Scanner(System.in);
    
               System.out.println("请输入账号");
               String name=sc.nextLine();
    
               System.out.println("请输入密码");
               String pwd=sc.nextLine();
    
               if(name.equals(username)&&pwd.equals(password)){
                 System.out.println("用户登录成功");
                  break;
                 }else {
                   if(2-i==0){
                       System.out.println("你的账户被锁定,请联系管理员");
                   }else{
    
                   }
                  System.out.println("用户登录失败!你还有"+(2-i)+"机会");
               }
            }
        }
    }
    
    
    1. charAt() 返回指定索引处的char值
    public class StringTest2 {
        public static void main(String[] args) {
            Scanner sc=new Scanner(System.in);
            System.out.println("请输入一个字符串");
            String line=sc.nextLine();
            for (int i = 0; i < line.length(); i++) {
                System.out.println(line.charAt(i));
            }
        }
    }
    

    3.length 返回字符串的长度

    相关文章

      网友评论

          本文标题:基础知识点

          本文链接:https://www.haomeiwen.com/subject/ytcrzltx.html