谷歌开发者工具的使用解读1、 独立窗口2、 Elements查看、编辑页面上的元素,包括html和css实用场景1:查看推广代码实用场景2:查看元素的属性,如nofollow实用场景3:ctrl+f,在搜索框中写元素的xpath路径,如果elements元素行被选中表示路径写的正确,如下例子定位po...
分类:
其他好文 时间:
2014-09-09 19:44:49
阅读次数:
191
Android的SharedPreferences的使用介绍
一、SharedPreferences的简介
SharedPreferences是一种轻型的数据存储方式,它的本质是基于XML文件存储key-value键值对数据,通常用来存储一些简单的配置信息。其存储位置在/data/data/包名>/shared_prefs目录下。SharedPreferences对象本身只能获取数据而不支持存...
分类:
移动开发 时间:
2014-09-09 18:28:29
阅读次数:
182
一个存储过程中多个更新操作,后面的更新操作出现异常,如果不手动回滚前面修改的数据是不会自动撤销的!BEGIN TRY BEGIN TRAN-- ..... COMMIT TRANEND TRYBEGIN CATCH ROLLBACK TRAN DECLARE @ErrorMe...
分类:
数据库 时间:
2014-09-09 17:46:19
阅读次数:
335
安装数据库后,在sqlserver configuration manager, sqlserver的网络配置,有将协议 shared memory,named pipes,tcp/ip,via全部启用后出现SQLSERVER无法启动的问题,错误信息如下:SQL Server 无法初始化 VIA 支...
分类:
数据库 时间:
2014-09-09 15:05:08
阅读次数:
333
Given an integern, generate a square matrix filled with elements from 1 ton2in spiral order.For example,Givenn=3,You should return the following matri...
分类:
其他好文 时间:
2014-09-09 11:38:08
阅读次数:
204
常用的集合有List,Set,Map,这三个都是接口,其中List,和Set继承于Collection而Map是一个可以保存键值对的接口Collection接口Collection是最基本的集合接口,一个Collection代表一组Object,即Collection的元素(Elements)。一些...
分类:
编程语言 时间:
2014-09-09 11:14:28
阅读次数:
295
In computer science, functional programming is a programming paradigm, a style of building the structure and elements of computer programs, that treat...
分类:
其他好文 时间:
2014-09-09 11:07:08
阅读次数:
225
Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.难度70,与Convert Sorted Array to Binary Sear...
分类:
其他好文 时间:
2014-09-08 06:26:16
阅读次数:
263
Longest Consecutive Sequence
Total Accepted: 19169 Total
Submissions: 68303My Submissions
Given an unsorted array of integers, find the length of the longest consecutive elements sequence...
分类:
其他好文 时间:
2014-09-07 21:12:55
阅读次数:
294
See LCS again时间限制:1000 ms | 内存限制:65535 KB难度:3描述There are A, B two sequences, the number of elements in the sequence is n、m;Each element in the seque.....
分类:
其他好文 时间:
2014-09-07 21:01:55
阅读次数:
286