标签:
主要定位:网络编程
八种基本数据类型:
整形:byte(8),short(16),int(32),long(64)l、L
字符:char(16)
浮点:float(32)f、F,double(64)d、D
布尔:boolean(8)
整形 全有符号
字符 16位UNicode编码,\uXXXX
逻辑运算符:
!:
&:
|:
^:
&&:
||:
位运算符:
~:
&:
|:
^:
<<:
>>:
>>>:
对象运算符
instanceof
数组:
int a[];
a = new int[10];
int b[] = {0,1};
类:
extends,implements
public,private,protected
package
集合:
Vector
Hashtable
Enumeration
Date
String
标签:
原文地址:http://www.cnblogs.com/wj033/p/4520539.html