; 感觉双休就想睡觉,这鬼天气,一直下雨。设置时间未完成,只是加了一个所谓的主界面; display
system time. press f1 to change the color displayed, press esc to return main
list. f3 exit; clear_...
分类:
其他好文 时间:
2014-05-27 03:09:58
阅读次数:
320
gdb FILE 调试程序gdb run 运行程序gdb list 查看代码break num
设置断点breac function info b 查看断点 delete b 删除断点break operator(函数名) 条件断点step 单步 next
往下执行 display varible ...
分类:
数据库 时间:
2014-05-27 03:07:35
阅读次数:
309
Given a collection of numbers, return all
possible permutations.For example,[1,2,3]have the following
permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:
其他好文 时间:
2014-05-27 02:42:35
阅读次数:
202
echo -e "#include \nint main()\n{\n printf(\"hello
world\\\n\");\n return 0;\n}" > h.c; gcc h.c; ./a.outh.c里的内容#include int
main(){ printf("h...
分类:
其他好文 时间:
2014-05-24 07:34:05
阅读次数:
213
/** * isAjaxRequest:判断请求是否为Ajax请求. * @param request
请求对象 * @return boolean * @since JDK 1.6 */public boolean
isAjaxRequest(HttpServletRequest request....
分类:
编程语言 时间:
2014-05-24 06:11:54
阅读次数:
254
/** *加载所有已经在系统表被启用的模块。
*@参数$bootstrap*是否加载在“引导模式”缓存页面加载的模块只减少集。见bootstrap.inc文件。*@return*如果$bootstrap为NULL,则返回一个布尔值,指示是否所有的模块已加载。
*/function module_l....
分类:
其他好文 时间:
2014-05-24 03:01:09
阅读次数:
315
概述:try {
//执行的代码,其中可能有异常。一旦发现异常,则立即跳到catch执行。否则不会执行catch里面的内容 } catch {
//除非try里面执行代码发生了异常,否则这里的代码不会执行 } finally { //不管什么情况都会执行,包括try catch
里面用了return...
分类:
编程语言 时间:
2014-05-24 02:48:49
阅读次数:
702
0); return $output; } public function
decode($input) { $length = strlen($input); $number = 0; $...
分类:
其他好文 时间:
2014-05-24 02:46:45
阅读次数:
319
1.createCallBack 返回一个带有window对象的函数1
Function.prototype.createCallback = function(){2 var args = arguments;3 var
method = this;4 return function...
分类:
Web程序 时间:
2014-05-24 02:41:32
阅读次数:
1003
Reverse digits of an integer. Example1: x =
123, return 321 Example2: x = -123, return –321 这道题应该不用详细说了。比较简单。唯一的是要注意特殊值0.
public class Solution { publ...
分类:
其他好文 时间:
2014-05-24 01:39:59
阅读次数:
170