字符串拼接是我们在Java代码中比较经常要做的事情,就是把多个字符串拼接到一起。都知道,String 是 Java 中一个不可变的类,所以一旦被实例化就无法被修改。
注意细节
字符是char 类型,字符串是String 类型
1、数字拼接char,得到的还是数字,相当于和它的ASCII编码相加(如果定义成String 会编译错误)
2、数字拼接String,得到的是String
3、数字同时拼接char 和 String,就看和谁先拼接,和谁后拼接
4、String 拼接任何类型,得到的都是String
代码如下
1
2
3
4
5
6
7
8
9
10
11
12
|
public static void main(String[] args) { String s1 = 1234 + '_' + "test" ; System.out.println( "s1 = " + s1); String s2 = 1234 + "_" + "test" ; System.out.println( "s2 = " + s2); String s3 = "test" + '_' + 1234 ; System.out.println( "s3 = " + s3); String s4 = "test" + 1234 + 56789 ; System.out.println( "s4 = " + s4); System.out.println( '_' ); System.out.println( 0 + '_' ); } |
得到的结果是:
s1 = 1329test
s2 = 1234_test
s3 = test_1234
s4 = test123456789
_
95
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/acm-bingzi/p/java_char_string.html