Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:
其他好文 时间:
2016-10-31 13:42:31
阅读次数:
186
下面我之前的解法,也很好,通过两个数字来记录可能的出错位置,并且在遍历的同时,更新这个位置。需要对出错的规律有深刻了解,比如在解法中,first_result位置就始终没有变过,因为一旦找到就可以不变,通过second_result位置的改变,就能满足条件: ...
分类:
其他好文 时间:
2016-10-30 19:22:39
阅读次数:
213
自学python网络爬虫,发现request比urllib还是要好用一些,因此利用request和BeautifulSoup来实现糗百的首页笑话的抓取。BeautifulSoup通过find和findAll以及利用正则表达式实现HTML对应模块的抓取,当然select也是一个不错的选择。下面是临时的 ...
分类:
编程语言 时间:
2016-10-28 22:31:08
阅读次数:
204
前台HTML: <div class="search-container"> <table class="search-container-table" cellpadding="0" cellspacing="0"> <tr> <td>统计年份:</td> <td> <input type="te ...
分类:
其他好文 时间:
2016-10-28 11:51:05
阅读次数:
468
1.添加加载更多布局 1_初始化和隐藏代码在RefreshListView构造方法中调用 2_布局文件refresh_listview_footer.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android= ...
分类:
其他好文 时间:
2016-10-28 02:38:18
阅读次数:
483
[cpp] view plain copy [cpp] view plain copy [cpp] view plain copy if(dlg.GetSafeHwnd()) { dlg.ModifyStyle(WS_CAPTION, 0); // 去掉标题栏 dlg.ModifyStyleEx(W ...
Python是动态类型,可以用type()查看类型; Python一切皆对象(对象是类的实例化,三个主要概念封装,继承,多态); //:整除符号; decimal类型:高精度的数字类型,但效率不高; 数字类型常用的函数:import math math.pi:π math.sqrt(80):开平方根 ...
分类:
编程语言 时间:
2016-10-26 19:39:54
阅读次数:
177
文本转自:http://www.cnblogs.com/sundalian/p/5629500.html APPIUM Android 定位方式 1.定位元素应用元素 1.1通过id定位元素 Android里面定位的id一般为resrouce-id: 代码可以这样写: WebElement elem ...
分类:
移动开发 时间:
2016-10-26 19:24:01
阅读次数:
228
用while语句求1~100之和 public class Ex3_5 { public static void main(String[] args){ int n=1,sum=0; while(n<=100) { sum+=n; n++; } System.out.println("sum="+ ...
分类:
其他好文 时间:
2016-10-24 11:33:36
阅读次数:
346