码迷,mamicode.com
首页 >  
搜索关键字:out range of signed 32bit displacement    ( 47132个结果
数据类型的转换
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
WPF 检测计算机网络连接情况
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
java输出矩阵
输出如下矩阵: 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
Mqtt协议IOS端移植3
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
POJ-1324-Holedox Moving(BFS)
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
Java 笔记之基础复习
1、& 与 &&的区别 两个都有逻辑与的功能。但是所不同的是,当&两边的表达式不是boolean类型的时候,&具有位与的功能;&&是短路与,当判断到前一个表达式为false的时候,将不会再去计算后面的表达式。 如: int i = 0; System.out.println((1==0)&(0==(i++))); System.out.println(i); ...
分类:编程语言   时间:2014-07-08 15:21:53    阅读次数:244
Understanding Safari Reader
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
Java——网络编程
?? // 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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!