JSONP说到 JSONP 就要说到同源策略(Same Origin Policy), 同源策略是浏览器最核心的也是最基本的安全功能。浏览器的同源策略,限制了来自不同源的 “document” 或脚本,对当前 “document” 读写或设置某些属性。通俗的说法就是外来的脚本无法碰到自家的文档。影响...
分类:
Web程序 时间:
2014-08-10 18:34:40
阅读次数:
282
Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.思路:对于两个点(x1,y1)和(x2,y2),其所确定的直线方程为:(x1-x2)*y + (y2-...
分类:
其他好文 时间:
2014-08-09 23:03:49
阅读次数:
317
Palindromes
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when t...
分类:
其他好文 时间:
2014-08-09 21:36:09
阅读次数:
344
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeate...
分类:
其他好文 时间:
2014-08-08 20:54:46
阅读次数:
246
"that are all of the same length" is the key. This statement makes everything much simpler. And, please take care that L may contain duplicated string...
分类:
其他好文 时间:
2014-08-08 15:33:46
阅读次数:
176
定义: /// /// The js function type(the same as name). /// [Flags] public enum CallJSFunctionTypes { None = 0, ResetFix...
分类:
其他好文 时间:
2014-08-07 18:45:10
阅读次数:
219
innerclass分为四种
一.staticinnerclass(静态内部类)
1.the simplest form of inner class
2.Can't hava the same name as the enclosing class
3.Compiled into a comletely separate .class file from the out class...
分类:
编程语言 时间:
2014-08-07 15:47:40
阅读次数:
319
The action bar provides your users a familiar and predictable way to perform actions and navigate your app, but that doesn't mean it needs to look exactly the same as it does in other apps. If you want to style the action bar to better fit your product bra...
分类:
移动开发 时间:
2014-08-07 03:07:49
阅读次数:
605
题目:Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.题解:这道题就是给你一个2D平面,然后给你的数据结构是由横纵坐标表示的点,然后看哪条直线上的点....
分类:
编程语言 时间:
2014-08-07 02:58:38
阅读次数:
212
先上cancel方法源码和注解 /** * Cancel the dialog. This is essentially the same as calling {@link #dismiss()}, but it will * also call your {@link Dia...
分类:
其他好文 时间:
2014-08-06 18:36:51
阅读次数:
267