从图中关系可以看出某些细菌在肠胃是益生菌,在口腔是有害菌。因为不同器官生理机能不同,所以同一细菌可以扮演不同角色。例如乳酸菌。Oral microbiologyis the study of themicroorganismsof the oralcavity(腔)and the interacti...
分类:
其他好文 时间:
2015-02-25 23:31:53
阅读次数:
320
本文测试指针初始化的方式:
错误初始化方式一:
int* p = NULL;//此句等于p = NULL;将指针指向了NULL这个地址,(NULL=0x0)
*p = 0x10;//试图访问0x0内存,被拒绝
错误初始化方式二:
int* p;//定义的时候未进行初始化,此时指针指向一块未知的内存
*p = 0x10;//试图访问未知内存,被拒绝
那么指针到底如何...
分类:
其他好文 时间:
2015-02-24 11:26:42
阅读次数:
110
##
#include
#define INTVARIABLE(n) i##n
int main(void)
{
int INTVARIABLE(2) = 3;
printf("i2=%d\n",i2);//output i2=3
i2 = 5;
printf("i2=%d\n",i2);//output i2=5
return 0;
}...
分类:
其他好文 时间:
2015-02-20 17:30:55
阅读次数:
133
#include
int main(void)
{
printf("%s\n",__FILE__);
printf("%s\n",__DATE__);
printf("%s\n",__TIME__);
printf("%d\n",__LINE__);
printf("%s\n",__func__);...
分类:
其他好文 时间:
2015-02-20 14:08:57
阅读次数:
212
定义一个字符数组:
char cArray[] = {'I','a','m','a','m','a','n','\0'};
用'\0'表示字符数组结束标志。它不占字符长度大小,但是占内存大小。
Result : sizeof(cArray) = 8 ; strlen(cArray) = 7 .
字符串定义方法:
(1)
char cString[] = "I am a Man !";...
分类:
编程语言 时间:
2015-02-20 11:57:46
阅读次数:
140
The difference of 0 & '0' & '\0'
------------------------------------------------------------
0 is a number(decimal).
------------------------------------------------------------
'0' is a char. It...
分类:
其他好文 时间:
2015-02-18 11:52:47
阅读次数:
104
本文讨论研究在switch case语句中如何使用continue关键字。
一般的switch case语句格式:
switch(?)
{
case num1:
//something
break;
case num2:
//something
break;
case numx:
//something
break;
default:
//default
break;
}
或...
分类:
其他好文 时间:
2015-02-15 09:26:04
阅读次数:
126
小伙伴们,2月10日(周三),AppCan将组织节前的最后一次直播活动,节前涨知识,不能错过。先来温习前面的课程【免费直播课】第二期:AppCan基础之多窗口框架【免费直播课】第一期——AppCan基础之Hi AppCan视频观看地址http://edu.appcan.cn/study.html?c...
分类:
移动开发 时间:
2015-02-13 18:17:34
阅读次数:
176
1. view the default user account1 SQL> select username from dba_users;2. lock all users and set their password to expired1 SQL> select ‘alter user ‘||...
分类:
数据库 时间:
2015-02-12 17:39:12
阅读次数:
162
1. "" , '', """ """
2. Strings are stored as sequences of characters indexed by integers, starting at zero.
3. To extract a substring, use the slicing operator s[i:j].
4. Strings are concatenated...
分类:
编程语言 时间:
2015-02-12 10:53:09
阅读次数:
167