1.自动类型提升:以大的为主,小的向大的方向提升,提升为同一类型的数据后在进行运算 byte b = 3; //b = b + 4;//结果会报错 //System.out.println(b);//结果是报错,可能损失精度4是一个int型变量,b+4这个表达式,b会自动类型提升为int与4相加,但...
分类:
其他好文 时间:
2014-07-09 21:07:46
阅读次数:
225
取模:即取余数System.out.println(2%5);//(没法除净的话)左边小于右边等于左边System.out.println(5%5);//两边相等等于零System.out.println(5%2);//(没法除净的话)左边大于右边等于1System.out.println(-1%5...
分类:
其他好文 时间:
2014-07-09 20:34:18
阅读次数:
239
赋值运算:+= -= *= /=int g=3;g+=4;//相当于g=g+4System.out.println(g);//结果g是7注意:short s=3;//s=s+4; 编译失败,可能损失精度,因为他做两次运算加法运算和赋值运算,4是int类型的不能用short来装s+=4;//编译成功....
分类:
其他好文 时间:
2014-07-09 00:44:43
阅读次数:
295
1 public static class NetWork 2 { 3 [DllImport("wininet.dll")] 4 private extern static bool InternetGetConnectedState(out int c...
分类:
其他好文 时间:
2014-07-09 00:08:30
阅读次数:
246
输出如下矩阵:
0000
0111
0122
0123
public static void main(String[] args){
for(int i=0;i<4;i++){
for(int j=0;j=j?j:i);
}
System.out.println();
}
}...
分类:
编程语言 时间:
2014-07-08 19:15:05
阅读次数:
733
ServerMqFramework.h
#import "MqttFramework.h"
@interface ServerMqFramework : MqttFramework
/**
* @brief 得到模块控制器的句柄单例
*
* @param [in] N/A
* @param [out] N/A
* @return void
* @note
*/
+(S...
分类:
移动开发 时间:
2014-07-08 18:29:44
阅读次数:
272
Description
During winter, the most hungry and severe time, Holedox sleeps in its lair. When spring comes, Holedox wakes up, moves to the exit of its lair, comes out, and begins its new life.
Hol...
分类:
其他好文 时间:
2014-07-08 17:28:54
阅读次数:
256
1、&
与 &&的区别
两个都有逻辑与的功能。但是所不同的是,当&两边的表达式不是boolean类型的时候,&具有位与的功能;&&是短路与,当判断到前一个表达式为false的时候,将不会再去计算后面的表达式。
如:
int i = 0;
System.out.println((1==0)&(0==(i++)));
System.out.println(i);
...
分类:
编程语言 时间:
2014-07-08 15:21:53
阅读次数:
244
Interesting enough to find out the Reader function in Safari is actually Javascript and there are many interesting stuff from the 2000 line code:
* 5 main parts in the file:
* 1. define const
* 2...
分类:
其他好文 时间:
2014-07-08 13:11:46
阅读次数:
469
??
// TODO Auto-generated method stub
//获取本地主机IP对象
InetAddress ip = InetAddress.getLocalHost();
System.out.println(ip.getHostAddress());
System.out.println(ip.getHostName());
//获取其他主...
分类:
编程语言 时间:
2014-07-08 12:58:09
阅读次数:
278