上一页 1 ··· 148 149 150 151 152
摘要: 非常多Android设备已经支持NFC(近距离无线通讯技术)了。本文就以实例的方式。为大家介绍怎样在Android系统中进行NFC开发。 Android NFC开发环境 使用硬件:Google Nexus S。北京大学学生卡。(ps:笔者本想使用公交一卡通进行測试,发现手机不能正确识别) 手机操作系 阅读全文
posted @ 2017-04-18 15:30 cxchanpin 阅读(777) 评论(0) 推荐(0) 编辑
摘要: 1 UpdateData 不能及时更新控件内容 原因: UpdateData是通过数据交换实现改变控件显示的。改变了之后必需要调用一次OnPaint才干实现刷新。 因此,若是在一个函数里重复多次调用有时是没有效果的。 若想及时更新控件内容。在调用UpdateData后。须要再调用下UpdateWin 阅读全文
posted @ 2017-04-18 14:49 cxchanpin 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 找出一个递减序列,假设有两个或两个以上递减序列直接no了,然后对递减序列两端数start。end,然后比較a[start]和a[end+1] 。 a[end] 和a[start-1] #include<iostream> #include<stdio.h> using namespace std; 阅读全文
posted @ 2017-04-18 13:59 cxchanpin 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Marbles Input: standard input Output: standard output I have some (say, n) marbles (small glass balls) and I am going to buy some boxes to store them. 阅读全文
posted @ 2017-04-18 12:54 cxchanpin 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 1.拨号界面输入*#06#。显示IMEI号,这是怎么出来的? 2.怎样高速的找出Android平台中的指令? 1. 在DialpadFragment中的EditText注冊一个Textchanged的监听器TextWatcher, 当EditText中的内容发生变化时会调用对应的回调函数,TextW 阅读全文
posted @ 2017-04-18 12:23 cxchanpin 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 在TCP/IP协议中,TCP协议提供可靠的连接服务,採用三次握手建立一个连接。 第一次握手:建立连接时,client发送syn包(syn=j)到server,并进入SYN_SENT状态,等待server确认;SYN:同步序列编号(Synchronize Sequence Numbers)。 第二次 阅读全文
posted @ 2017-04-18 10:45 cxchanpin 阅读(265) 评论(0) 推荐(0) 编辑
摘要: <Files *> Options -Indexes </Files> <IfModule mod_headers.c> <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> Header set Cache-Control "max 阅读全文
posted @ 2017-04-18 10:12 cxchanpin 阅读(1218) 评论(0) 推荐(0) 编辑
摘要: 1、注解的定义 import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang. 阅读全文
posted @ 2017-04-18 09:18 cxchanpin 阅读(345) 评论(0) 推荐(0) 编辑
摘要: php依赖管理工具。用于处理packages或者libraries。基于单个工程project,在project的vender目录下保存,默认永远不会全局安装。 须要php 5.3.2+,安装资源包时须要git,svn或者hg。 1、下载composer.phar到你的项目文件夹下,是项目打包文件, 阅读全文
posted @ 2017-04-18 08:23 cxchanpin 阅读(1468) 评论(1) 推荐(0) 编辑
摘要: 代码例如以下: #include <stdio.h> int factor[3][4] = { {0, 1, 2, 3}, {0, 1}, {0, 1, 2}, }; int lengths[3] = {4, 2, 3}; void recurisionAccess(int factor[3][4] 阅读全文
posted @ 2017-04-17 21:34 cxchanpin 阅读(426) 评论(0) 推荐(0) 编辑
上一页 1 ··· 148 149 150 151 152