博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串初始化、查找字符+获取字符
阅读量:5744 次
发布时间:2019-06-18

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

public class zifuchuan {    public static void main(String[] args) {                        //字符串初始化.        String a="字符串";//内存空间地址一样        String d="字符串";        String b=new String("字符串");//new,开辟新的内存空间        String c=new String("字符串");        char[]e=new char[]{'我','很','好'};        String f=new String(e);        System.out.println(f);                                //==运算,比较的是内存地址。        System.out.println(a==b);        System.out.println(a==c);        System.out.println(a==d);        System.out.println(b==c);                        //比较字符串是否相等。        System.out.println(a.equals(b));        System.out.println(b.equals(c));                                                //字符串信息        a.length();//带()的是方法,不带的是属性                //indexOf(),只能从前往后找:                //查找字符串位置,查找字符串中子字符串的位置,返回值是找到之后的索引值。        System.out.println(a.indexOf("串"));//索引的位置。        System.out.println(a.indexOf("符串"));//首字的索引值                //查找不到时:        System.out.println(a.indexOf("无"));//返回值是-1                //有多个时,只找第一个所在的索引值:        String g=new String("字符串字符串字符串");        System.out.println(a.indexOf("串"));                        //lastIndexOf();从后边往前找                System.out.println(g.lastIndexOf("符"));                        //获取字符.charAt(索引)        char c1=g.charAt(2);        System.out.println(c1);

 

转载于:https://www.cnblogs.com/1ming/p/5228056.html

你可能感兴趣的文章
EL表达式无法显示Model中的数据
查看>>
ps6-工具的基础使用
查看>>
linux下使用过的命令总结(未整理完)
查看>>
时间助理 时之助
查看>>
英国征召前黑客组建“网络兵团”
查看>>
PHP 命令行模式实战之cli+mysql 模拟队列批量发送邮件(在Linux环境下PHP 异步执行脚本发送事件通知消息实际案例)...
查看>>
pyjamas build AJAX apps in Python (like Google did for Java)
查看>>
centos5.9使用RPM包搭建lamp平台
查看>>
Javascript String类的属性及方法
查看>>
[LeetCode] Merge Intervals
查看>>
Struts2 学习小结
查看>>
测试工具综合
查看>>
【记录】JS toUpperCase toLowerCase 大写字母/小写字母转换
查看>>
在 Linux 系统中安装Load Generator ,并在windows 调用
查看>>
Visifire charts ToolBar
查看>>
Mysql查询
查看>>
数据传输流程和socket简单操作
查看>>
ProbS CF matlab源代码(二分系统)(原创作品,转载注明出处,谢谢!)
查看>>
OC中KVC的注意点
查看>>
JQ入门(至回调函数)
查看>>