码迷,mamicode.com
首页 >  
搜索关键字:clear unarchived logfile    ( 6943个结果
matlab global persistent变量
global变量是全局的,在使用global变量的函数里需要用global声明所使用的变量。persistent类似global,不过仅对当前函数有作用,这样避免了外面的影响。当这个函数被clear出内存时,persistent变量也被clear。为了防止这个现象,需要使用mlock把函数或mex文...
分类:其他好文   时间:2014-05-12 16:00:26    阅读次数:368
将Asp.Net页面输出到EXCEL里去
其实,利用ASP.NET输出指定内容的WORD、EXCEL、TXT、HTM等类型的文档很容易的。主要分为三步来完成。 一、定义文档类型、字符编码 Response.Clear(); Response.Buffer= true; Response.Charset="utf-8"; ...
分类:Web程序   时间:2014-05-09 18:24:58    阅读次数:352
linux基础命令学习(一)
pwd 输出当前工作路径tree 以树状图列出目录的内容ctrl+c 取消命令的执行clear 清空屏幕ls 列出文件目录 蓝色是目录,白色是普通文件alias cls=clear 别名终端:本地终端、远程虚拟终端tty:哪个终端登录Alt F1切换终端登录w:查看多少人登录id/groups以.开...
分类:系统相关   时间:2014-05-08 14:26:41    阅读次数:479
make it clear how to use const in C++
1.first of all,take a lookup on the left side of keyword const.If there is something(type or pointer),then apply const featureto it.2.nothing found on...
分类:编程语言   时间:2014-05-06 00:38:25    阅读次数:361
qt 添加本程序的注册表项
QStringcmd;cmd.clear();QStringapplication_path=QCoreApplication::applicationFilePath();//带文件扩展名的全路径application_path.replace("/","\\");QStringregPath="...
分类:其他好文   时间:2014-05-05 11:17:55    阅读次数:282
【QTP-场景恢复】Post-Recovery Test Run Options Screen
Post-Recovery Test Run Options Screen When you clear the Add another recovery operation check box in the Recovery Operation screen and click next, the...
分类:其他好文   时间:2014-05-04 19:37:19    阅读次数:571
Shell 程序 输出重新定向
#!/bin/bash clear echo "" echo "Enter Your First Name:" read FirstName echo "Enter Your Last Name:" read LastName echo "$FirstName $LastName">trans.dat...
分类:其他好文   时间:2014-05-03 22:02:31    阅读次数:299
Linux 下vim 不能进行保存
折腾了一个中午,在终端输入  vim myProgram 然后编辑以下内容 #!/bin/bash clear echo "" echo "The Telephone Book" echo "" echo "1.Display A Telephone Number" ehco "2.Add A New Telephone Number" echo "" echo "Q Quit" ec...
分类:系统相关   时间:2014-05-03 21:26:33    阅读次数:483
一个简单 的Shell 显示程序
#!/bin/bash clear declare FirstName Greeting Greeting="Hello ," echo "" echo "Enter Your First Name:" read FirstName echo "$ Greeting $FirstName" 首先   vim  Print  回车 然后   i   进入插入状态 编辑以上代码,Esc 键...
分类:其他好文   时间:2014-05-03 21:05:20    阅读次数:283
Timus 1642. 1D Maze迷宫
1D people lived in a 1D country. Everything in the country was one-dimensional, and everything was simple and clear: just one axis and two directions — forward and backward. Even a 1D world has proble...
分类:其他好文   时间:2014-04-29 13:44:22    阅读次数:284
6943条   上一页 1 ... 691 692 693 694 695 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!