摘要: #include"stdio.h"#include"stdlib.h"int main() {long max = 1;printf("sizeof(long ) = %d \n",sizeof(long));printf("sizeof(int ) = %d \n",sizeof(int));pr... 阅读全文
posted @ 2015-05-11 22:17 mooreliu 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 今天在做POJ的题是遇到了大数问题,就想编程支持long的最大值范围。 long max = 1; printf("sizeof(long ) = %d \n",sizeof(long)); //long类型数据占的字节数bytes printf("sizeof(int ) = %d \n",siz... 阅读全文
posted @ 2015-05-11 22:15 mooreliu 阅读(1151) 评论(0) 推荐(0) 编辑
摘要: SharedPreference对于各Activity之间通信起到了高效快捷的作用。相当于一个全局的XML资源表,方便开发。 SharedPreference在后面会转载一下其具体用法,如果侵权请及时联系我,立马删除。 我在Android开发过程中,忘了在putString之后 提交co... 阅读全文
posted @ 2015-05-11 16:31 mooreliu 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 表征性状态传输(英文:Representational State Transfer,简称REST)是Roy Fielding博士在2000年他的博士论文中提出来的一种软件架构风格。目前在三种主流的Web服务实现方案中,因为REST模式与复杂的SOAP和XML-RPC相比更加简洁,越来越多的web服... 阅读全文
posted @ 2015-05-11 13:01 mooreliu 阅读(249) 评论(0) 推荐(1) 编辑
摘要: Android开发弱网络客户端的时候,需要给服务器发送HTTP POST请求,首先进行设置 URL url = new URL(urlString); connection = (HttpURLConnection) url.openConnection(); connection.setConn... 阅读全文
posted @ 2015-05-11 12:32 mooreliu 阅读(263) 评论(0) 推荐(0) 编辑