1957

无聊蛋疼的1957写的低端博客
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年1月24日

摘要: We often see the symbol extern "C" in C++ source files.Why use this?Because C++ has overload function property like:f(int i) //definesf__Fif(int i ,char* j)//definesf__FiPcWhen we link in other fileextern f(int); // refers to f__FIextern f(int,char*) // refers to f__FiPcBut the C programmi 阅读全文

posted @ 2013-01-24 21:29 1957 阅读(172) 评论(0) 推荐(0)