博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
String方法的应用:
阅读量:4984 次
发布时间:2019-06-12

本文共 369 字,大约阅读时间需要 1 分钟。

package com.tets;

public class Demo2 {

       public static void main(String[] args){
           String str="Hello world";
           String str2="hello world";
             int len=str.length();
           boolean b=str.startsWith("H");
           boolean c=str2.contains("Hello");
           boolean d=str2.endsWith("d");
          System.out.println("字符串的长度是"+len);

          System.out.println(b+c+d);

       }
}

转载于:https://www.cnblogs.com/yang-1yang/p/10088540.html

你可能感兴趣的文章
12306-车
查看>>
ADO.NET+Access: 2,至少一个参数没有被指定值
查看>>
Day 04
查看>>
centos7更改网卡名称
查看>>
ckeditor_学习(1) 基本使用
查看>>
1013团队Beta冲刺day4
查看>>
二叉树输出
查看>>
利用lambda和条件表达式构造匿名递归函数
查看>>
Spring学习之常用注解(转)
查看>>
手工模拟Oracle数据块逻辑讹误引发,ORA-00600:[13013] [5001]一例
查看>>
CSS魔法堂:你真的理解z-index吗?
查看>>
《30天自制操作系统》笔记(12)——多任务入门
查看>>
Go单元测试与基准测试
查看>>
如何了解熟悉业务
查看>>
浅析回调函数和Schedule
查看>>
07黑盒测试方法
查看>>
小程序开放插件功能,可供其他小程序使用
查看>>
poj2398计算几何叉积
查看>>
lightoj1138
查看>>
HDU 3001 Travelling
查看>>