字符串声明的格式是: String 字符串名 比如:String s;
字符串的创建格式:字符串名 = new String(字符串常量)或者 字符串名=字符串常量 比如:s = new String ( "student" ); 或者:s = "student";
声明和创建可以一步完成,比如:String s = new String ( "student" ); 或者 String s = "student";
大家是不是觉得:String这个类的声明,跟前面我们学过的基本数据类型的声明的格式是一样的,比如:整型的声明:int n; 比较一下: String s; 事实上, 类型 变量名
这种格式是类的声明的一般格式,你可以把类当作基本数据类型一样来声明。 另一方面,
变量名= new 类名(参数列表);比如 s = new String ( "student" ); 这是类的一般创建格式。 |
|