标签:
1. String字符串特点:
一旦被赋值,字符串值就不能改变。
2. 案例:
1 package cn.itcast_02; 2 3 /* 4 * 字符串的特点:一旦被赋值,就不能改变。 5 */ 6 public class StringDemo { 7 public static void main(String[] args) { 8 String s = "hello"; 9 s += "world"; 10 System.out.println("s:" + s); // helloworld 11 } 12 }
图解:
Java基础知识强化31:String类之String的特点
标签:
原文地址:http://www.cnblogs.com/hebao0514/p/4821488.html