Update index.md

This commit is contained in:
winsonrich
2018-10-23 16:28:44 +08:00
committed by Kristofer Koishigawa
parent 2f08132959
commit 377328f3c4

View File

@ -51,7 +51,7 @@ Wrapper Class: Short
Example: short s = 10, short r = -1000; Example: short s = 10, short r = -1000;
``` ```
### INT ### 整数
int数据类型是32位带符号的二进制补码整数。除非存在对内存的担忧否则它通常用作整数值的默认数据类型。 int数据类型是32位带符号的二进制补码整数。除非存在对内存的担忧否则它通常用作整数值的默认数据类型。
``` ```
@ -174,7 +174,7 @@ public class Box{
} }
``` ```
## 串: ## 串:
String不是原始数据类型但它允许您在数组中存储多个字符数据类型并且可以使用许多方法。当用户键入数据并且您必须对其进行操作时它会非常常用。 String不是原始数据类型但它允许您在数组中存储多个字符数据类型并且可以使用许多方法。当用户键入数据并且您必须对其进行操作时它会非常常用。