自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

原创 Clib.htm

C/C++ API函数

2012-10-15 22:16:56 106

原创 C 获得随机数

#include using namespace std; time_t temp_time; srand((unsigned)time(&temp_time));//初始化随机种子 int r = (rand() % 256); //0-255 int r1 = (rand() % 10); //0-9 int r2 = (rand() % 100); //0-99...

2012-08-19 14:59:03 88

原创 c 获得毫秒

Linux系统 使用gettimeofday接口:gettimeofday能得到微秒数,比毫秒还要更精确。 #include #include int main() { struct timeval start, end; gettimeofday( &start, NULL ); sleep(3); gettimeofday( &end,...

2012-08-15 22:24:18 136

原创 颜色拾取器和红蜻蜓截图

一个小巧的屏幕颜色拾取器,可用于HTML,VC++... 红蜻蜓截图软件

2012-07-22 14:15:39 187

原创 SecureCRT_PortableSoft

SecureCRT_PortableSoft

2012-07-22 11:27:44 201

原创 无法连接到linux虚拟机

解决方法: ______________________________________ 一、开启SSH 以root用户登录Linux,打开终端,运行: /etc/init.d/sshd restrat ______________________________________ 二、关闭防火墙 1.在终端运行 setup 2,.选择 firewall 回车 3.按...

2012-07-20 23:23:18 137

原创 C++ 创建文件夹

//C++创建文件夹 bool CreateFolder(string path) { char* fileName = (char*)path.c_str(); char* tag; for(tag = fileName; *tag; tag++) { if ('\\' == *tag || '/' == *tag)...

2012-06-28 22:15:51 142

原创 资源连接

android系统自带system/app下载 http://download.csdn.net/download/lin2221021/3551265   Android在Git上的所有项目源码下载http://www.linuxidc.com/Linux/2011-03/33518.htm windows下安装git下载android源码 http://blog.csdn.net...

2012-03-24 08:17:01 219

原创 java反射

public void gets(Class clazz) throws Exception { Object e=clazz.newInstance(); //实例化对象 // 获取字段 java.lang.reflect.Field[] fies = clazz.getDeclaredFields(); // 获得全部字段 java.lang.reflect.Field...

2011-08-03 14:40:00 79

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除