摘要:
void TheFunc(void){ static int icount=0; icount++; if(icount>10){ cout<<"我已被调用超过10次了"<<endl; return; } if(icount>20){ cout<<"我已被调用超过20次了"<<endl; retur 阅读全文
posted @ 2017-04-25 09:19
朱小勇
阅读(1697)
评论(0)
推荐(0)
摘要:
1、在Linux中echo命令用来在标准输出上显示一段字符,比如:echo "the echo command test!" 这个就会输出“the echo command test!”这一行文字! 2、echo "the echo command test!">a.sh这个就会在a.sh文件中输入 阅读全文
posted @ 2017-04-25 09:15
朱小勇
阅读(526)
评论(0)
推荐(0)