字符串(String)中常用的方法

常用的方法

    public static void main(String[] args) {
        String str1 = new String("hello world  hello dt60 hello java dt60");
        // charAt(int index);返回指定索引处的char值
        char ch1 = str1.charAt(32);// bug
        System.out.println("ch1=" + ch1);
        // 查看指定字符串的长度;字符串对象.length()
        int len1 = str1.length();
        System.out.println("len=" + len1);
        int[] attr1 = { 1, 2, 4, 3, 8, 20, 17 };
        int len2 = attr1.length;
        System.out.println("len2=" + len2);// 长度为7
        // endWith(String suffix):测试此字符串是否以指定的后缀结束。
        boolean flag1 = str1.endsWith("60");
        System.out.println("flag1=" + flag1);
        // startsWith(String prefix):测试此字符串是否以指定的前缀打头。
        boolean flag2 = str1.startsWith("h");
        System.out.println("flag2=" + flag2);
        // boolean flag3=str2.equals(str3);equals用来比较两个字符串是否相同
        String str2 = "hello";
        String str3 = "hello";
        boolean flag3 = str2.equals(str3);
        System.out.println("flag3=" + flag3);
        // 通过==比较字符串
        String str4 = new String("hello");
        String str5 = new String("hello");
        boolean flag4 = (str4 == str5);
        System.out.println("flag4=" + flag4);
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

立花泷的学习日记

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值