- 博客(16)
- 资源 (22)
- 收藏
- 关注
原创 shell 监控
shell 监控 #!/bin/bash#The shell function used to watch the file state#if [ "$1"="" ] || [ "$2"="" ]if [ "$1" = "" ] || [ "$2" = "" ]thenecho "Please input the two file names"exit 1fi
2011-12-10 18:48:46 820
原创 shell 倒序输出
shell 倒序输出 #!/bin/bash#The shell function used to reverse the input numberecho -n "Please input the number"read nsd=0rev=""on=$necho "Your input is $n"while [ $n -gt 0 ]do#sd=$((
2011-12-10 17:06:48 4864 1
原创 shell 脚本统计当前目录下普通文件个数
shell 脚本统计当前目录下普通文件个数#!/bin/bash#The shell function used to count how many files in the current dirctorycount=0for files in *doif [ -f "$files" ]thencount=`expr $count + 1`fidoneec
2011-12-10 16:34:28 3798
原创 shell 程序设计入门 比较两个数的大小
shell 程序设计入门#!/bin/sh#The function used to compare the two numbersvara=$1varb=$2if [ -z $vara ] || [ -z $varb ]thenecho "please input hte two numbers"exit 1fiif [ $vara -eq $varb ]
2011-12-10 15:44:12 2314
原创 pthread 等待
pthread 等待#include #include #include #include #include #include #include #include /*struct number{int number;char *string;};*///;不可少void *create(void *arg){int i;for(i=
2011-12-08 20:39:45 897
原创 pthread多线程的创建
多线程的创建#include #include #include #include #include #include #include #include struct number{ int a; char *s;};//void *create((void*)arg){void *create(void* arg){ st
2011-12-08 20:00:43 695
原创 open 函数
#include #include #include #include #include #include #include int main(int argc, char argv[]){ int fd1,fd2; printf("stdin is:\t%d\n",fileno(stdin)); print
2011-12-08 19:14:00 2646
原创 break和continue, exit和return
exit直接退出程序,后面不再执行 return只是 所在函数返回,后面会继续执行exit() 结束当前进程/当前程式/,在整个程式中,只要调用 exit ,就结束 return() 是当前函数返回,当然如果是在主函数main, 自然也就结束当前进程了,如果不是,那就是退回上一层
2011-07-15 19:10:56 1284
原创 sys/type.h
在应用程序源文件中包含 以访问 _LP64 和 _ILP32 的定义。此头文件还包含适当时应使用的多个基本派生类型。尤其是以下类型更为重要: clock_t 表示系统时间(以时钟周期为单位)。 dev_t 用于设备号。 off_t 用于文件大小和偏移量。 ptr
2011-07-15 18:43:43 2743
原创 c
for(i=0;i3;++i)if(i==2)printf("%c/n",a[i]);elseprintf("%c ",a[i]);}注意空格的作用
2010-11-21 15:11:00 643
原创 c
for(i=0;i2;++i){for(j=0;j2;++j)if(a[i]>a[j+1]){c=a[j+1];a[j+1]=a[i];a[i]=c;
2010-11-21 15:09:00 768 1
原创 java网址
java 网址大全[url]http://www.java3z.com/cwbwebhome/index1.jsp[/url]1 java 中文API [url]http://gceclub.sun.com.cn/Java_Docs/html/zh_CN/api/[/url]2java夜未眠 [url]http://www.javaeye.com/[/url]3 Blog java [url]http://www.blogjava.net/[/url]专注于Java技术4 Java开源大全<br />提供
2010-10-22 20:03:00 860
原创 四个数排序
#includeusing namespace std;int main(){int t,a,b,c,d; coutcin>>a>>b>>c>>d;coutif(a>b){t=a;a=b;b=t;}if(a>c){t=a;a=c;c=t;}if(a>d){t=a;a=d;d=t;}if(b>c){t=b;b=c;c=t;}if(b>d)
2010-10-09 21:04:00 951
原创 计算机图书
<br />计算机经典书籍 <br />各种计算机语言的经典书籍<br /><br />1、Java <br />Java编程语言(第三版)---Java四大名著----James Gosling(Java之父) <br />Java编程思想(第2版)----Java四大名著----Bruce Eckel <br />Java编程思想(第3版)----Java四大名著----------------Bruce Eckel <br />JAVA 2核心技术 卷I:基础知识(原书第7版)---Jav
2010-10-07 21:17:00 705
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人