; 感觉双休就想睡觉,这鬼天气,一直下雨。设置时间未完成,只是加了一个所谓的主界面; 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
Boost 是我直接 sudo apt-get install 的,系统会帮我安装到
usr/include/boost 和 usr/lib 下,因此我可以直接使用 -lboost_system 库, 或直接 include
而不用做额外的配置#include #include #include ....
分类:
系统相关 时间:
2014-05-27 02:45:44
阅读次数:
356
生成子类的过程见代码:class Person { String name; int age;
Person(){ System.out.print("Person的无参数构造函数"); } Person(String name,int age){ ...
分类:
移动开发 时间:
2014-05-27 02:43:41
阅读次数:
226
原文:http://www.crifan.com/csharp_call_explorer_to_open_destinate_folder_and_select_specific_file/C#中调用资源管理器(Explorer.exe)打开指定文件夹
+ 并选中指定文件 + 调用(系统默认的播放...
分类:
其他好文 时间:
2014-05-27 02:27:53
阅读次数:
496
http://space.itpub.net/14466241/viewspace-624132示例代码如下:namespace
SampleListT{ class Program { static void Main(string[] args) { //using System...
分类:
其他好文 时间:
2014-05-19 13:28:56
阅读次数:
233
FileChannel是flume一个非常重要的channel组件,非常常用。这个channel非常复杂,涉及的文件更多涉及三个包:org.apache.flume.channel.file、org.apache.flume.channel.file.encryption(加密)、org.apa.....
分类:
其他好文 时间:
2014-05-19 13:02:06
阅读次数:
285
在MySQL的master-slave或dual master的架构中,我们经常使用show
slave status命令来查看复制状态。这里涉及几个重要的日志文件和位置:Master_Log_File,Read_Master_Log_Pos:
记录了IO thread读到的当前master bin...
分类:
其他好文 时间:
2014-05-19 12:57:28
阅读次数:
282
平时我们看到网页上的文件上传,这周终于学习了。主要使用input
type="file";先在第一个php页面上写$_FILE("名字")它的功能:判断文件是否上传。is_名字_file:它的功能是将文件上传到服务器的哪里。生成验证码图片语法:1.生成图片$xx
=imagecreatetrueco...
分类:
其他好文 时间:
2014-05-19 12:53:19
阅读次数:
209
System.getenv获取的是系统的环境变量(就是用户在操作系统中设置的环境变量),windows和linux下环境变量的设置就不说了哦。
System.getProperties获取的是系统的相关属性。在java api文档中已经列出了如下属性
如果我们要在java程序启动就能获取自定义的系统...
分类:
编程语言 时间:
2014-05-19 12:07:54
阅读次数:
496