......
全部博文(52)
发布时间:2013-06-04 23:00:15
1. static local variable a) It is defined in function, but it is exist all time unless program exit. b) We use it only in function. c) If we only define it, and system will assign it as 0(int) or NULL(char). ......【阅读全文】
发布时间:2013-06-03 20:31:48
1. definition 从源代码的层次看,和函数的形式一样,只是在函数前面用inline做了修饰。但是在编译后,只是把函数体里面的代码代替函数名,而不像普通函数那样调用前保存现场,记住当前执行地址,调用后恢复现场等操作,所以执行效率高。2. 使用时注意事项 递归函数,以及含有whil.........【阅读全文】