码迷,mamicode.com
首页 >  
搜索关键字:test2 unit11    ( 841个结果
研磨数据结构与算法-06递归的应用
一,简单DemopublicclassRecursion{ publicstaticvoidmain(String[]args){ test(100); } publicstaticvoidtest(intn){ if(n==0){ return; } System.out.println(n); test2(n-1); }}二,三角数字publicclassTriangle{ publicstaticintgetNumber(intn){ inttotal=0; w..
分类:编程语言   时间:2015-09-21 01:54:29    阅读次数:265
asp.net mvc 之获取地址栏参数
方法有两种test1的view页面@html.actionlink("参数传递","test2/1","html")1在test2 的controller中获取public ActionResult test2(int id) { ViewData["id"] =...
分类:Web程序   时间:2015-09-19 12:13:22    阅读次数:285
shell常用命令的Tips
1.cdcd - 返回上一次目录cd 返回当前用户的家目录2.mkdirmkdir -p 创建多级目录eg: mkdir -p test1/test2/test33.findfind -empty 查找空文档find -user xxx 查看关于用户xxx的所有信息find -mtime -1 查看...
分类:系统相关   时间:2015-09-19 00:36:34    阅读次数:296
JavaScript小笔记
function test1 () { console.log('test1'); } function test2 () { console.log('test2'); } function test3 (test3) { console.log(test3); } functi...
分类:编程语言   时间:2015-09-14 22:33:41    阅读次数:211
linux c函数指针的应用
头文件:1.h#includeint nul_func();int test1(int a,int b); int test2(int a,int b,int c); int test3(int a,int b,int c,int d); int GetFunc(char *p,int (**pfu...
分类:系统相关   时间:2015-09-14 12:15:00    阅读次数:168
asp+ffmpeg视频截图
<% ‘视频数据定义 str_ffmpeg="C:\ffmpeg\bin\ffmpeg.exe"???? ‘服务器端 ffmpeg.exe 位置? video="D:\test\ffmpeg\test2\m1080p1.wmv"?? ‘需要截图的视频位置 pic="D:\test\ffmpeg\test2\m1080p1.jpg"? ...
分类:Web程序   时间:2015-09-11 19:30:53    阅读次数:151
asp+ffmpeg获取视频的时长
<% ‘视频数据定义 ffmpeg = "C:\ffmpeg\bin\ffmpeg.exe" video? = "D:\test\ffmpeg\test2\m1080p1.wmv" ‘wscript脚本定义 set WshShell = CreateObject("Wscript.Shell") str2 = "cmd.exe /c "&ffmpeg&" -i ...
分类:Web程序   时间:2015-09-11 17:47:07    阅读次数:132
ThinkPHP多表联合查询的常用方法
1、原生查询示例:$Model = new Model();$sql = 'select a.id,a.title,b.content from think_test1 as a, think_test2 as b where a.id=b.id '.$map.' order by a.id '.$...
分类:Web程序   时间:2015-09-10 09:32:04    阅读次数:148
Linux运维之路第一部总结及扩展
Linux小文件传输---50M以下使用SecureCRT自带的传输功能:1、在Linux系统中安装lrzsz,安装命令:yum–yinstalllrzsz2、安装完成后输入命令rz–bey会弹出文件传输对话框。大文件传输工具:Winscp命令的基本格式执行多个命令:例如:echo“test1";echo“test2”Bash快捷键BASH快..
分类:系统相关   时间:2015-09-10 02:07:55    阅读次数:263
gdb调试程序
编写test2.c编译成可执行文件gcc test2.c -g -o test2gdb test2进入gdb调试run命令run命令格式run 其中run可以简写成r,gdb中大部分指令可以简写。在gdb中执行run lvyahui blog可以看到输出再次运行run可以不需要再传递参数,它会使用最...
分类:数据库   时间:2015-09-05 12:23:36    阅读次数:211
841条   上一页 1 ... 60 61 62 63 64 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!