创建字符串变量

字符串

字符串不属于基本数据类型,字符串是由单个或者多个字符所组成的。字符串也相当于 char 类型的数组,字符串用 String 来表示。

Java中提供了两种字符串类,分别是 String 类和 StringBuffer 类,并且为它们提供了各自相应实现字符串的方法。

创建字符串变量

声明一个字符串有两种方式,即常量声明方式和对象声明方式。

1.常量声明方式是采用双引号括住一个字符串的方法,如下:

String hello = "HelloWorld!";
或
String hello;
hello = "HelloWorld!";

对象声明方式的格式如下:

字符串类 字符串名 = new 字符串类(参数);
String hello = new String("HelloWorld!");

注意:字符串变量必须经过初始化才能使用。

StringDemo01

package string;

public class StringDemo01 {

    public static void main(String[] args){
        byte[] bs = {97,98,99,100,101};
        char[] chs = {'w','e','l','c','o','m','e',',','c','h','e','n'};

        String s1 = new String(bs);     //String(byte[] bytes);
        String s2 = new String(chs);    //String(char[] value);
        String s3 = new String(chs, 8, 4);  //String(char[] value,int offset,int count)

        System.out.println("s1的值是:"+s1);
        System.out.println("s2的值是:"+s2);
        System.out.println("s3的值是:"+s3);

    }
}

s1的值是:abcde
s2的值是:welcome,chen
s3的值是:chen

上一篇:3673: 可持久化并查集 by zky


下一篇:s3打印管理器的安装和升级方法