String类概述
String类概述
测试类:
package com.ax.test;
public class TestCreateStringObject {
public static void main(String[] args) {
String dec = "喜羊羊";
String newDec = new String(dec);
System.out.println("是否具有相等的字符序列:"+(dec.equals(newDec)));//true
System.out.println("是否具有同一个引用:"+(dec == newDec));//false
}
}
String类常用方法1
public char charAt(int index)
public int compareTo(String t
String类概述最先出现在Python成神之路。
共有 0 条评论