The difference of the string and the character(char): 字符串是一个带有""的字符序列如 "I fuck xuqiang"annotation:双引号不是字符串的一部分.双引号告知编译器它括起来的是字符串.C语言没有专门用于存储字符串的变量类型,字符串都被存储在char类型的数组中.字符串常量"x"和字符常量'x'不同,区别之一在于'x'是基本类型(char),而"x"是派生
Java提供两种不同的类型:引用类型和原始类型(内置类型).Int是java的原始数据类型,Integer是java为int提供的封装类. Java为每个原始数据类型提供了封装类. 其中原始数据类型封装类有 boolean --> Boolean c har --> Character byte --> Byte short --> Short int --> Integer long --> Long float --> Float double -->