发布时间:2013-06-27 16:57:09
1,C++ inline用法:An inline function represents a request to the compiler to expand the function at each call point. With an inline function, the compiler replaces the function call with a copy of the code to be executed.//inline会向编译器请求在每个调用点展开函数。inline函数中,编译器用将.........【阅读全文】
发布时间:2013-06-26 17:03:15
Essential C++ 第二章知识点如下:1,函数调用时,传递的参数不同:点击(此处)折叠或打开bool fibon_elem( int pos, int &elem ){……} void main() { if ( fib.........【阅读全文】