String的基本特性string:字符串,使用一对””引起来表示。
string sl = “zhefu”;//字面量的定义方式
string s2 =new String ( “hello”);
string声明为final的,不可被继
2022-03-30