写在前面: 按照main()函数的代码一行一行的分析,该是看到了 etimer_process 这个位置。但是etimer_process实现里的一个宏 PROCESS_YIELD()引出了很多故事,于是单独把整个宏的东西整理成笔记,贴出来,和学习contiki的伙伴分享。 在说这个宏之前,...
分类:
编程语言 时间:
2014-07-27 10:51:52
阅读次数:
313
CJson文档:http://www.yiiframework.com/doc/api/1.1/CJSONCJson::encode可以编码任何类型的数据:源码如下;public static function encode($var){ switch (gettype($var)) { ...
分类:
Web程序 时间:
2014-07-27 10:17:32
阅读次数:
309
3. 基本概念基本数据类型:Undefined,Null,Boolean,Number,String.复杂数据类型:Object.3.6 语句switch比较值时用的是全等运算符 “===” ,因此不会进行类型转换。例如 “10” 不等于10.3.7 函数ECMAScript函数不介意传递进来多少个...
分类:
编程语言 时间:
2014-07-26 14:58:40
阅读次数:
230
I.判断语句:1.if语句:A.If(){//执行语句;}B.if(){//执行语句;}else{//执行语句;}C.if(){//执行语句;}else if{//执行语句;}……else{//执行语句;}2.switch语句:switch(表达式){case 常量表达式1:语句1;case 常量表...
分类:
其他好文 时间:
2014-07-26 14:00:44
阅读次数:
194
基础架构 拓扑图 Switching Path L3 routing at aggregation layer L2 switching at access layer L3 switch融合了三种功能: RP, router processor, 处理路由协议 SP, switch process...
分类:
其他好文 时间:
2014-07-26 01:18:36
阅读次数:
459
MySQL下载地址:ftp://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.6/http://mirrors.sohu.com/mysql/1.查看服务器版本:[root@mysql ~]#cat /etc/redhat-releaseCentOS...
分类:
数据库 时间:
2014-07-26 00:25:56
阅读次数:
447
Swift采用类同c语言的流程控制语句,if, for, for-in, while, do-while , switch, break, continue .Swift语言的Switch语句自动添加了break效果,这样你可以不用没个case后面再写break.同c语言不同,swift语言的if ...
分类:
其他好文 时间:
2014-07-26 00:04:56
阅读次数:
365
问题:使用switch把小写类型的char型转为大写。只转换a,b,c,d,e.其它的输出“other”。importjava.util.Scanner;
importjava.io.IOException;
/*从控制台接收一个字符,然后将其打印出来
//虽然此方式实现了从键盘获取输入的字符,但是System.in.read()只能针对一个字符的获取..
分类:
其他好文 时间:
2014-07-25 11:36:52
阅读次数:
607
The present invention relates to an apparatus for supporting information centric networking. An information centric network (ICN) node based on a swit...
分类:
Web程序 时间:
2014-07-25 03:58:25
阅读次数:
567
#include
main()
{
int x=1,y=0,a=0,b=0;
switch(x)
{
case 1:
switch(y)
{
case 0:a++;break;
case 1:b++;break;
}
case 2:a++;b++;break;
case 3:a++;b++;
}
printf("%d,%d\n",a,b);
}...
分类:
其他好文 时间:
2014-07-24 23:06:53
阅读次数:
217