ASP.NET内置对象 转(1)简述ASP.NET内置对象。 答:ASP.NET提供了内置对象有Page、Request、Response、Application、Session、Server、Mail和Cookies。这些对象使用户更容易收集通过浏览器请求发送的信息、响应浏览器以及存储用户信息,....
分类:
Web程序 时间:
2014-10-09 13:16:33
阅读次数:
345
国庆7天假期,大部分朋友都出去旅游了,微信圈里全是晒旅游的照片, 东南亚游,欧洲游呀,真是羡慕呀。 悲惨的我只去了上海野生动物园, 在家休息,利用这段假期,把之前学过的东西都总结下。我前段时间加班太多了,每天忙碌工作,都没精力去管自己的学习新技能的计划, 博客也没写几篇,很多想做的事情都因为工作太忙...
分类:
其他好文 时间:
2014-10-09 13:16:23
阅读次数:
226
(OpenCV读取视频、OpenCV提取视频每一帧、每一帧图片合成新的AVI视频)CvCapture 是视频获取结构 被用来作为视频获取函数的一个参数 比如 CvCapture* cap; IplImage* cvQueryFrame( cap ); 从摄像头或者文件中抓取并返回一帧————————...
分类:
其他好文 时间:
2014-10-09 13:32:53
阅读次数:
184
前台代码: 1 2 3 4 5 6 7 8 9 10 11 12 16 17 18 19 ...
分类:
数据库 时间:
2014-10-09 14:22:43
阅读次数:
269
/** * 友好的时间显示 * * @param int $sTime 待显示的时间 * @param string $type 类型. normal | mohu | full | ymd | other * @param string $a...
分类:
Web程序 时间:
2014-10-09 14:55:43
阅读次数:
228
Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). How do you find an elemen...
分类:
其他好文 时间:
2014-10-09 14:22:13
阅读次数:
332
ProblemPrint a matrix in spiral fashion.SolutionWe will first print the periphery of the matrix by the help of 4 for loops. Then recursively call this...
分类:
其他好文 时间:
2014-10-09 14:22:03
阅读次数:
151
https://vijos.org/p/1768之前不知道为什么,我yy了一个n^2的做法,但是没能写出来。。sad然后看了题解才发现这题好神。。为什么一定要照着题意找两个点然后算呢?这就是问题所在。。。我们可以观察每一个点,发现他的贡献恰好是左边比他小的数和右边比他大的数组成的顺序对,那么一共有l...
分类:
其他好文 时间:
2014-10-09 14:05:03
阅读次数:
151
April 13, 2010inUncategorizedRotate a one-dimensional array of n elements to the right by k steps.For instance, with n=7 and k=3, the array {a, b, c, ...
分类:
其他好文 时间:
2014-10-09 13:48:13
阅读次数:
129
http://www.cnblogs.com/springcsc/archive/2009/12/03/1616330.html注:StringBuffer类和String一样,也用来代表字符串,只是由于StringBuffer的内部实现方式和String不同,所以StringBuffer在进行字符...
分类:
编程语言 时间:
2014-10-09 13:31:23
阅读次数:
121
Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers....
分类:
其他好文 时间:
2014-10-09 14:04:23
阅读次数:
155
本文总结一下浏览器在 javascript 的加载方式。关键词:异步加载(async loading),延迟加载(lazy loading),延迟执行(lazy execution),async 属性, defer 属性一、同步加载与异步加载的形式1. 同步加载我们平时最常使用的就是这种同步加载形式...
分类:
编程语言 时间:
2014-10-09 14:37:34
阅读次数:
212
开篇 Android是一个运行在移动终端上的操作系统,跟传统PC最大的不同所在就是移动终端的资源紧缺问题“比较”明显,当然对于一些屌丝机型,应该用“非常“来形容才靠谱。所以经常会出现在一些比较缺乏青春活力的老型机上,运行一些软件被异常终止的情况;然而作为互联网厂家来说,广大的屌丝机用户肯定是一大笔....
分类:
移动开发 时间:
2014-10-09 13:14:03
阅读次数:
137
For i = 1 To ActiveDocument.Tables.Count ActiveDocument.Tables(i).Cell(1, 1).Select With Selection .SelectRow .Font.Bold = True .Shading.BackgroundPat...
分类:
其他好文 时间:
2014-10-09 14:37:13
阅读次数:
209
1 class Person { 2 private String name; 3 private int age; 4 public String getName() { 5 return this.name; 6 } 7 8 p...
分类:
其他好文 时间:
2014-10-09 14:03:43
阅读次数:
156
Find the intersection of two sorted arrays.Let’s called array1 as A and array2 as B, each with size m and n.The obvious brute-force solution is to sca...
分类:
其他好文 时间:
2014-10-09 14:20:13
阅读次数:
161
Javascript在浏览器中的性能,可以说是前端开发者所要面对的最重要的可用性问题。 在Yahoo的Yslow23条规则当中,其中一条是将JS放在底部。原因是,事实上,大多数浏览器使用单进程处理UI和更新Javascript运行等多个任务,而同一时间只能有一个任务被执行。Javascript...
分类:
编程语言 时间:
2014-10-09 13:46:43
阅读次数:
222