chenglong7997

C/C++. filename, line, onexit

如何判断一段程序是由C 编译程序还是由C++编译程序编译的? 
答案: 

  1. #ifdef __cplusplus  
  2. cout<<"c++";  
  3. #else  
  4. cout<<"c";  
  5. #endif  

 

如何打印出当前源文件的文件名以及源文件的当前行号? 
答案: 
cout << __FILE__ ; 
cout<<__LINE__ ; 
__FILE__和__LINE__是系统预定义宏,这种宏并不是在某个文件中定义的,而是由编译器定义的。

main 主函数执行完毕后,是否可能会再执行一段代码,给出说明? 
答案:可以,可以用_onexit 注册一个函数,它会在main 之后执行。

  1. #include <iostream>  
  2. using namespace std;  
  3.   
  4. int fn1()  
  5. {  
  6.     printf( "next.\n" );  
  7.     return 0;  
  8. }  
  9. int fn2()  
  10. {  
  11.     printf( "executed " );  
  12.     return 0;  
  13. }  
  14. int fn3()  
  15. {  
  16.     printf( "is " );  
  17.     return 0;  
  18. }  
  19. int fn4()  
  20. {  
  21.     printf( "This " );  
  22.     return 0;  
  23. }  
  24.   
  25. int _tmain(int argc, _TCHAR* argv[])  
  26. {     
  27.     _onexit( fn1 );  
  28.     _onexit( fn2 );  
  29.     _onexit( fn3 );  
  30.     _onexit( fn4 );  
  31.     printf( "This is executed first.\n" );  
  32.   
  33.     return 0;  
  34. }  
输出结果为:image

The _onexit function is passed the address of a function (func) to be called when the program terminates normally. Successive calls to _onexit create a register of functions that are executed in LIFO (last-in-first-out) order. The functions passed to _onexit cannot take parameters.

 

类成员函数的重载、覆盖和隐藏区别? 
答案: 
a.成员函数被重载的特征: 
(1)相同的范围(在同一个类中); 
(2)函数名字相同; 
(3)参数不同; 
(4)virtual 关键字可有可无。

  (5)const的区别 
b.覆盖是指派生类函数覆盖基类函数,特征是: 
(1)不同的范围(分别位于派生类与基类); 
(2)函数名字相同; 
(3)参数相同; 
(4)基类函数必须有virtual 关键字。 
c.“隐藏”是指派生类的函数屏蔽了与其同名的基类函数,规则如下: 
(1)如果派生类的函数与基类的函数同名,但是参数不同。此时,不论有无virtual关键字,基类的函数将被隐藏(注意别与重载混淆)。 
(2)如果派生类的函数与基类的函数同名,并且参数也相同,但是基类函数没有virtual 关键字。此时,基类的函数被隐藏(注意别与覆盖混淆)

posted on 2012-03-31 02:11 Snape 阅读(302) 评论(0)  编辑 收藏 引用 所属分类: C++ 转载


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


导航

<2024年4月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

统计

常用链接

留言簿

随笔分类

随笔档案

文章分类

文章档案

my

搜索

最新评论

阅读排行榜

评论排行榜