正则表达式(RegEx)——快速参考基础知识在任意位置进行匹配: 默认情况下, 正则表达式可以匹配被搜索字符串的 任意位置 的子字符串. 例如, 正则表达式 abc 可以匹配 abc123, 123abc 以及 123abcxyz. 要限制在开始或末尾进行匹配, 请使用 锚.转义字符: 大多数字符 ...
分类:
其他好文 时间:
2014-11-28 14:09:07
阅读次数:
485
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:
其他好文 时间:
2014-11-28 14:08:00
阅读次数:
184
我觉得,做开发的一定要有一个简单,但功能强大的文本编辑器。我比较喜欢notepad++,而且一直使用。准备通过这篇文章分享一下我的notepad++配置。
希望广大notepad++用户,如果有好的配置也能向我推荐一下。
Theme设置
由于可能会长时间面对电脑编辑文本,所以给编辑器找一个舒服的背景...
分类:
其他好文 时间:
2014-11-28 14:10:24
阅读次数:
162
转载:http://www.th7.cn/Program/c/201303/127343.shtml原因是Visual C++ 2012 使用了更加安全的 run-time library routines 。新的Security CRT functions(就是那些带有“_s”后缀的函数),请参见...
分类:
其他好文 时间:
2014-11-28 14:08:36
阅读次数:
291
一、什么是库?库是共享程序代码的方式,一般分为静态库和动态库。静态库:链接时完整地拷贝至可执行文件中,被多次使用就有多份冗余拷贝。动态库:链接时不复制,程序运行时由系统动态加载到内存,供程序调用,系统只加载一次,多个程序共用,节省内存。三、iOS里静态库形式?.a和.framework四、iOS里动...
分类:
其他好文 时间:
2014-11-28 14:07:31
阅读次数:
158
一 软件安装关于 makefile文件问题如果拿到的工程文件中,没有Makefile文件,而只有configure.in和Makefile.am文件,我们是不能够直接进行编译的,必须根据configure.in和Makefile.am文件生成编译所需的Makefile文件。具体操作步骤如下: 1、执...
分类:
其他好文 时间:
2014-11-28 14:08:54
阅读次数:
293
The conventional way to produce dual (positive and negative) outputs from a single positive input is to use a transformer. Although such designs are r...
分类:
其他好文 时间:
2014-11-28 14:08:17
阅读次数:
145
CodeSmith学习笔记------1.新建一个Code Smith Generator Template(C sharp)2.一些常见标签的解释:①外部变量:表示定义一个string类型的外部变量,在需要在生成的时候才输入,此属性有默认值,也可以由用户在右下角的属性栏里修改属性的值。还有Opti...
分类:
其他好文 时间:
2014-11-28 14:05:21
阅读次数:
276
已经不是学生了 对于刚刚走出校园的我来说 哪怕是写一个小工具 不再仅仅是功能的完成 需要考虑到用户的可用性 当处理大批量文件时 程序可能会出现的问题 还有程序处理的效率 当谨记this.SetStyle(ControlStyles.AllPaintingInWmPaint,true);//解决闪烁t...
分类:
其他好文 时间:
2014-11-28 14:07:34
阅读次数:
139
Buck regulators find wide application as step-down regulators for converting large positive input voltages into a smaller positive output voltages.Fig...
分类:
其他好文 时间:
2014-11-28 14:05:24
阅读次数:
269
上点:就是指得边界上得点,开区间的话,上点就是在域外,闭区间得话,上点就是在域内。离点:指得就是离上点最近得点,如果是开区间,那么离点就在域内,如果是闭区间,那么离点就在域外。内点:域内得任意点都是内点。实例: (6,15] 上点:6 15 离点:7 16
分类:
其他好文 时间:
2014-11-28 14:04:56
阅读次数:
295
【FFmpeg】FFmpeg常用基本命令1.分离视频音频流ffmpeg -i input_file -vcodec copy -an output_file_video //分离视频流ffmpeg -i input_file -acodec copy -vn output_file_audio .....
分类:
其他好文 时间:
2014-11-28 14:04:52
阅读次数:
134
The circuit inFigure 1delivers programming voltages to an EEPROM under the control of an external DAC (not shown). You can replace the DAC with a pote...
分类:
其他好文 时间:
2014-11-28 14:03:59
阅读次数:
223
class Father{ Father(int a) { System.out.println("father run"); }}class Son extends Father{ Son() { Super(2); System....
分类:
其他好文 时间:
2014-11-28 14:04:49
阅读次数:
104
The step-up switching-converter circuit inFigure 1presents a familiar problem: If you shut down boost converter IC1by pulling itsinput low, external i...
分类:
其他好文 时间:
2014-11-28 14:03:16
阅读次数:
131
You would normally use a series linear regulator or a dc/dc converter to obtain 3V dc from a higher supply. However, when breadboarding a concept, you...
分类:
其他好文 时间:
2014-11-28 14:05:17
阅读次数:
142
cookie的属性 domain:域名,即cookie所能使用的范围,当然当前域下可以在当前域下cookie,还有一个就是该域名的父级域名(子级的域名下是可以访问父级域名下的cookie,父级域名是不可以不作处理的情况下访问子级域名的cookie) path:此参数也控制着cookie的访问,如.....
分类:
其他好文 时间:
2014-11-28 14:04:34
阅读次数:
132