通过官方的API 可以获取到wifi的信息,实现代码:1234567891011-(id)fetchSSIDInfo{NSArray*ifs=(__bridge_transferid)CNCopySupportedInterfaces();NSLog(@"Supportedinterfaces:%@...
分类:
移动开发 时间:
2015-05-06 10:48:38
阅读次数:
129
一、for循环for循环的运作方式,是将串行的元素一一取出,依序放入指定的变量中,然后重复执行包含的命令区域(在do和done之间),直到所有的元素取完为止。其中,串行是一些字符串的组合,彼此用$IFS所定义的分割字符(如空格)隔开,这些字段串称为字段。for的语法for变量in串行 ..
分类:
系统相关 时间:
2015-05-01 20:02:17
阅读次数:
185
#!/bin/bash
while IFS=: read name1 name2 name3 name4
#IFS是从文件读取内容时指定的分割符号,将a中的内容以:分开的部分分别赋值给相应变量.
do
echo $name1 '|' $name2 '|' $name3 '|' $name4
done <a
#反引号与$()的功能是命令替换,将反引号或$()中的字...
分类:
系统相关 时间:
2015-04-15 09:39:42
阅读次数:
211
#!/bin/bash
while IFS=: read name1 name2 name3 name4
#IFS是从文件读取内容时指定的分割符号,将a中的内容以:分开的部分分别赋值给相应变量.
do
echo $name1 '|' $name2 '|' $name3 '|' $name4
done <a
#反引号与$()的功能是命令替换,将反引号或$()中的字符串当作命令来执行,但是反引...
分类:
系统相关 时间:
2015-04-13 09:35:22
阅读次数:
169
声明数组declare-aarray2.字符串切为数组(array)默认分隔符是$IFS,修改IFS可以变更。3.数组转回字符串"${array[*]}"默认分隔符是空格4.数组切片${array[@]:x}从第x个元素到最后,注意0下标的元素是第1个元素,第x元素的下标实际上是0。去掉:x就是访问整个数组5.数组追加arra..
分类:
编程语言 时间:
2015-03-21 06:26:19
阅读次数:
145
导入头文件:#import - (void)currentWifiSSID { // Does not work on the simulator. NSArray *ifs = (__bridge id)CNCopySupportedInterfaces(); NSLog(@"ifs:%@",if...
分类:
移动开发 时间:
2015-03-04 18:57:17
阅读次数:
143
请尝试用filter()删除1~100的素数。defsushu(s):
ifi<2:
returnTrue
forxinrange(2,s):
ifs%x==0:
returnTrue
returnFalse
list=range(2,101)
printfilter(sushu,list)
分类:
其他好文 时间:
2015-03-02 11:27:41
阅读次数:
137
processLine()
{
line="$@"
echo $line
}
FILE=""
if [ "$1" == "" ]; then
FILE="/dev/stdin"
else
FILE="$1"
if [ ! -f $FILE ]; then
echo "$FILE : does not exists"
exit 1
...
分类:
系统相关 时间:
2015-01-23 20:07:29
阅读次数:
242
文件结构:demo\ src\main.cpp;Box.cpp include\Box.h编译链接之后:demo\ src\main.cpp;Box.cpp include\Box.h bin\main.exe比如src\main.cpp中有一句ifstream ifs("..\\incl...
分类:
其他好文 时间:
2015-01-09 18:47:22
阅读次数:
146
参考资料为:linux shell脚本攻略 作者sarath Lakshman 人民邮电出版社shell:读取文件的每一行内容并输出 的写法1目的:读取passwd文件,获得用户名和其默认的shell,并打印出来首先cp /etc/passwd ./passwd_cpshell脚本get_usr_....
分类:
系统相关 时间:
2014-12-17 12:35:20
阅读次数:
350