上一页 1 2 3 4 5 6 7 8 ··· 10 下一页

2011年7月22日

摘要: /****strcmp - compare two strings, returning less than, equal to, or greater than**Purpose:* STRCMP compares two strings and returns an integer* to indicate whether the first is less than the second, ... 阅读全文
posted @ 2011-07-22 19:18 jay.windows 阅读(3612) 评论(0) 推荐(0) 编辑
摘要: /****char *strcat(dst, src) - concatenate (append) one string to another**Purpose:* Concatenates src onto the end of dest. Assumes enough* space in dest.**Entry:* char *dst - string to which "src" is... 阅读全文
posted @ 2011-07-22 19:07 jay.windows 阅读(1695) 评论(0) 推荐(0) 编辑
摘要: /****char *strcpy(dst, src) - copy one string over another**Purpose:* Copies the string src into the spot specified by* dest; assumes enough room.**Entry:* char * dst - string over which "src" is to ... 阅读全文
posted @ 2011-07-22 19:04 jay.windows 阅读(5645) 评论(0) 推荐(0) 编辑

2011年4月6日

摘要: 不错的文章 先留着~http://wiki.ubuntu.org.cn/index.php?title=%E7%94%A8GDB%E8%B0%83%E8%AF%95%E7%A8%8B%E5%BA%8F&variant=zh-hans#.E7.9B.B8.E5.85.B3.E8.AF.8D.E6.9D.A1用GDB调试程序出自Ubuntu中文 作者:haoel (QQ是:753640,MSN是:haoel@hotmail.com)来源:http://blog.csdn.net/haoel/archive/2003/07/02/2879.aspx [编辑] GDB概述GDB 是GNU开源组 阅读全文
posted @ 2011-04-06 23:17 jay.windows 阅读(1094) 评论(0) 推荐(0) 编辑
摘要: 一 、Linux文件结构 文件结构是文件存放在磁盘等存贮设备上的组织方法。主要体现在对文件和目录的组织上。 目录提供了管理文件的一个方便而有效的途径。 Linux使用标准的目录结构,在安装的时候,安装程序就已经为用户创建了文件系统和完整而固定的目录组成形式,并指定了每个目录的作用和其中的文件类型。 /根目录 ┃ ┏━━┳━━━┳━━━┳━━━╋━━━┳━━━┳━━━┳━━━┓ ┃ ┃ ┃ ┃ ┃ ... 阅读全文
posted @ 2011-04-06 22:54 jay.windows 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 1.Linux是大小写敏感的系统,举个例子,Mozilla, MOZILLA, mOzilla和 mozilla是四个不同的命令(但是只有第四个mozilla是真正有效的命令)。还有,my_filE, my_file,和 my_FILE是三个不同的文件。用户的登录名和秘密也是大小写敏感的(这是因为UNIX系统和C语言的传统一向是大小写敏感所致)。 2.文件名最多可以有256个字符,可以包含数字,点... 阅读全文
posted @ 2011-04-06 22:20 jay.windows 阅读(237) 评论(0) 推荐(0) 编辑

2011年3月23日

摘要: 假定定义好了队列管理器:MQ manager:MQ.ORANGE, 本地队列MQ queue:QU.LOCAL;(1)在进程里定义一个触发进程(例如TrigGetMessage),在“应用程序标识”处输入应用程序路径(例如"E:\Release\GetMessge.exe");(2)建立一个启动队列QU.INI。启动队列也是本地队列,类型为WebSphere MQ Default Initiation Queue;将触发器控制设置为“打开”状态,根据应用需要选择相应的触发逻辑条件(例如,“第一个”、“每个”,“深度”);(3)打开本地队列QU.LOCAL, 选择触发,在进程 阅读全文
posted @ 2011-03-23 15:43 jay.windows 阅读(1472) 评论(0) 推荐(0) 编辑
摘要: 假定定义好了队列管理器:MQ manager:MQ.ORANGE, 本地队列MQ queue:QU.LOCAL;(1)在进程里定义一个触发进程(例如TrigGetMessage),在“应用程序标识”处输入应用程序路径(例如"E:\Release\GetMessge.exe");(2)建立一个启动队列QU.INI。启动队列也是本地队列,类型为WebSphere MQ Default Initiation Queue;将触发器控制设置为“打开”状态,根据应用需要选择相应的触发逻辑条件(例如,“第一个”、“每个”,“深度”);(3)打开本地队列QU.LOCAL, 选择触发,在进程 阅读全文
posted @ 2011-03-23 15:42 jay.windows 阅读(945) 评论(0) 推荐(0) 编辑

2010年10月3日

摘要: strcpy原型:extern char *strcpy(char *dest,char *src);用法:#include <string.h>功能:把src所指由NULL结束的字符串复制到dest所指的数组中。说明:src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串。 返回指向dest的指针。例:char a[100],b[50];strcpy(... 阅读全文
posted @ 2010-10-03 16:55 jay.windows 阅读(530) 评论(0) 推荐(0) 编辑

2010年3月8日

摘要: In the beginning, there were no testers at Microsoft, no localization engineers, no program managers,and no usability engineers. In the beginning, there were just engineers; oh, and sales and marketin... 阅读全文
posted @ 2010-03-08 14:01 jay.windows 阅读(167) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页

导航