!2、String s = “123”;这个语句有几个对象产生 创建了一个对象,将“123”存储到常量池中。 延展:String s = new String("abc")这个语句创建了几个对象? 这种题目主要就是为了考察程序员对字符串对象的常量池掌握与否。上述的语句中是创建了2个对象,第一个对象是”abc”字符串存储在常量池中,第二个对象在JAVA Heap中的 String 对象。
%13、海量数据查询、存储 !14、switch可以使用那些数据类型 A switch works with the byte, short, char, and int primitive data types. It also works with enumerated types (discussed in Enum Types), the String class, and a few special classes that wrap certain primitive types: Character, Byte, Short, and Integer (discussed in Numbers and Strings).