{"id":40,"title":"java\u6570\u636e\u7c7b\u578b","good":2,"bad":1,"hit":2408,"created_at":"2014-04-17 14:40:31","content":"
\/*\u6570\u636e\u7c7b\u578b
byte b1=-128;
byte b2=127;
System.out.println(b1);
System.out.println(b2);
short st1=-32768;
short st2=32767;
System.out.println(st1);
System.out.println(st2);
int it1=-2147483648;
int it2=2147483647;
System.out.println(it1);
System.out.println(it2);
long l=1234567890l;\/\/\u6700\u540e\u4e00\u4e2a\u662f\u5c0f\u5199\u7684\u5b57\u6bcdL
System.out.println(l);
float f=2.123456789123456789f;\/\/\u6700\u540e\u4e00\u4e2a\u662f\u5b57\u6bcdf,\u6700\u591a7\u4f4d\u5c0f\u6570
System.out.println(f);
double d=1.0123456789012345678901234567890;\/\/\u6700\u591a17\u4f4d\u5c0f\u6570
System.out.println(d);
char c='\u5b57';\/\/\u5b57\u7b26,\u5355\u5f15\u53f7,\u53ea\u80fd\u6709\u4e00\u4e2a\u5b57\u7b26
System.out.println(c);
String s="e\u76d8";\/\/\u5b57\u7b26\u4e32,\u53cc\u5f15\u53f7,\u591a\u4e2a\u5b57\u7b26
System.out.println(s);
{
String ss="\u533a\u57df";
System.out.println(ss);
}
boolean bl=true;
System.out.println(bl);<\/p>"}