Read the b.o.t.N.A.T's sourcecode---2---b.o.t.c 【 RTFSC project】

    技术2022-06-09  46

    [首先对文中的多篇引用的作者表示感谢】

     

    关于bot:

    1 POSIX:portable operation system interface (X表示对UNIX API的传承)

     

    2 ptread_mutex_t:(mutex互斥)

    在做这个的实验的时候,因为牵扯到多线程,eclipse还是会报错,但是根据上一篇文章中提到的方法,就很容易的解决了,i just dont know why.

    http://blogold.chinaunix.net/u2/67780/showart_2211689.html

    http://www.ibm.com/developerworks/cn/linux/thread/posix_threadapi/part3/

     

    3 srand(time(0))  设置随机数种子

    time(0):从1970年current的秒数

    http://zhidao.baidu.com/question/33336870

    http://blog.csdn.net/ycs0501/archive/2009/03/09/3973568.aspx

     

    4 getopt()处理argc和argv,很有意思

    http://blog.csdn.net/vitolee/archive/2009/02/25/3936853.aspx

     

    5 strncpy strcpy的区别(安全)

     http://blog.csdn.net/nabber/archive/2008/03/24/2212891.aspx

     

    6 signal

    http://blog.csdn.net/zhuixundelang/archive/2010/11/01/5979465.aspx

    http://www.cnblogs.com/taobataoma/archive/2007/08/30/875662.html

     

    launch.c: 

     

    7 eclipse跳转到函数的定义:按住ctrl,点击函数名即可。如果要想从函数定义处查看,函数在哪里被使用,双击函数名,ctrl+shift+G

     

    8 strstr(str1,str2):在str1中查找包含str2首次出现的地方,返回str2开始及其后面的地方。

     

    http://blog.csdn.net/sky2098/archive/2007/03/15/1530291.aspx

     

    9 strtok() 一篇帖子中提到在其使用静态变量的坏处。

     

    http://blog.csdn.net/aizibion/archive/2009/09/10/4540428.aspx 

    http://blog.csdn.net/xtlcq/archive/2008/11/26/3378042.aspx

     

    10 

     

     

     


    最新回复(0)