码迷,mamicode.com
首页 > 其他好文 > 详细

课后作业4

时间:2017-10-27 15:44:49      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:UI   替换   equal   不同的   ase   .com   lower   another   return   

动手动脑之Stringequals()方法:

String类型当比较不同对象内容是否相同时,应该用equals,因为“==”用于比较引用类型和比较基本数据类型时具有不同的功能。

1:当对象不同,内容相同,"=="返回false,equals返回true

String s1=new String(“java”);

String s2=new String(“java”);

System.out.println(s1==s2);//false

System.out.println(s1.equals(s2));//true

2:当同一对象,"=="和equals结果相同

String s1=new String(“java”);

String s2=s1;

System.out.println(s1==s2);//true

System.out.println(s1.equals(s2));//true

3:如果值不相同,对象就不相同,所以"==" 和equals结果一样

String s1=”java”;

String s2=”java”;

System.out.println(s1==s2);//true

System.out.println(s1.equals(s2));//true

整理String类的Length(),charAt(),getChars(),replace(),toUpperCase(),toLowerCase(),trim(),toCharArray()使用说明

length():public int length()//求字符串长度

         String s=”dwfsdfwfsadf”;

         System.out.println(s.length());

charAt():public charAt(int index)//index 是字符下标,返回字符串中指定位置的字符

        String s=”Hello”;

        System.out.println(s.charAt(3));

getChars():public int getChars()//将字符从此字符串复制到目标字符数组

        String str = "abcdefghikl";

        Char[] ch = new char[8];

        str.getChars(2,5,ch,0);

replace():public int replace()//替换字符串

        String s=”\\\”;

        System.out.println(s.replace(“\\\”,”///”));

        结果///;

toUpperase():public String toUpperCase()//将字符串全部转换成大写

         System.out.println(new String(“hello”).toUpperCase());

toLowerCse():public String toLowerCase()//将字符串全部转换成小写

         System.out.println(new String(“HELLO”).toLowerCase());

trim():public String trim()

         String x=”ax  c”;

         System.out.println(x.trim());//是去两边空格的方法

toCharArray(): String x=”abcd”;// 将字符串对象中的字符转换为一个字符数组

           char myChar[]=x.toCharArray();

          System.out.println(“myChar[1]”+myChar[1]);

 

课后作业4

标签:UI   替换   equal   不同的   ase   .com   lower   another   return   

原文地址:http://www.cnblogs.com/tianzeyangblog/p/7742950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!