Quantcast
Channel: CSDN博客移动开发推荐文章
Viewing all articles
Browse latest Browse all 5930

一起Talk Android吧(第十八回:Java常用类String VS StringBuffer)

$
0
0

各位看官们,大家好,上一回中咱们说的是Java常用类之StringBuffer的例子,这一回咱们说的例子是Java常用类String VS StringBuffer。闲话休提, 言归正转。让我们一起Talk Android吧!


看官们,我们在前面章回中介绍了String和StringBuffer两种字符串类型,这一回中我们将对它们进行对比,同时解答上一个章回中留下的疑惑。首先我们将这两种字符串类型进行对比:

String类型的变量是字符串常量,而StringBuffer类型的变量是字符串变量

大家都知道常量不可以修改,而变量是可以修改的。这表明我们可以修改StringBuffer类型的字符串变量,而不能修改String类型的字符串常量。回想一下,前面章回中String类型的变量有两种初始化方式,而StringBuffer类型的变量只有一种初始化方式,大家现在明白其中的原因了吗?其本质原因在于:不能使用字符串常量初始化字符串变量。这一点从这两种类型提供的方法中也能体现出来。比如String类型就没有提供与append()和insert()类似可以直接修改字符串的方法,而StringBuffer提供这种方法。大家还记得上一章回中最后一个疑问吗?我们使用append()方法在原来的字符串后面添加了新的字符串,被添加的新字符串已经成了原来字符串的一部分。接下来通过具体的例子进行说明:

public class StringEx {

    public static void main(String args[])
    {
        String str1 = "Java";
        StringBuffer str2 = new StringBuffer("Java");

        System.out.println("Before change the string: ");
        System.out.println("str1 is: "+str1);
        System.out.println("str2 is: "+str2);

        if(str1 == "Java")
            System.out.println("str1 has the same address of memory ");
        else
            System.out.println("str1 has not the same address of memory ");


        if(str2 == str2)
            System.out.println("str2 has the same address of memory ");
        else
            System.out.println("str2 has not the same address of memory ");

        str1 = str1+" Language";
        str2 = str2.append(" Language");

        System.out.println("After change the string: ");
        System.out.println("str1 is: "+str1);
        System.out.println("str2 is: "+str2);

        if(str1 == "Java")
            System.out.println("str1 has the same address of memory ");
        else
            System.out.println("str1 has not the same address of memory ");

        if(str2 == str2)
            System.out.println("str2 has the same address of memory ");
        else
            System.out.println("str2 has not the same address of memory ");     
    }
}

在上面的代码中我们定义了两个字符串:str1和str2,不过它们的类型不相同。我们对字符串进行了相关的修改,并且判断了修改前后它们的内存地址是否相同。下面是程序的运行结果,请大家参考:

Before change the string: 
str1 is: Java
str2 is: Java
str1 has the same address of memory 
str2 has the same address of memory 
After change the string: 
str1 is: Java Language
str2 is: Java Language
str1 has not the same address of memory 
str2 has the same address of memory 

从程序运行结果中可以看到,这两个变量的内容在修改前后都拥有相同的内容,但是String类型的变量:str1在修改前后拥有不同的内存地址;而stringBuffer类型的变量在修改前后拥有相同的内存地址。

不知道大家还记得我们在前面章回中提到过的匿名对象没有,str1变量在修改前指向匿名对象"Java",修改后指向了匿名对象“Java Language”,两个不同的匿名对象,其内存地址显然不相同,大家现在明白其中的原因了吧。

关于这两种类型的字符串,在实际使用中大家可以依据程序的需要来选择其中一种,不过有一点大家需要明白: 在字符串连接时String比StingBuffer类型的字符串性能低,因为在内存中创建了新的匿名对象,既有时间上的开销,也有空间上的开销。

各位看官,关于Java常用类String VS StringBuffer的例子咱们就介绍到这里,欲知后面还有什么例子,且听下回分解!


作者:talk_8 发表于2017/4/24 21:35:31 原文链接
阅读:113 评论:0 查看评论

Viewing all articles
Browse latest Browse all 5930

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>