c++常见笔试题(3)

来源:互联网 发布:非诚勿扰php程序员视频 编辑:程序博客网 时间:2024/06/17 07:03

33.简述数组与指针的区别?

数组要么在静态存储区被创建(如全局数组),要么在栈上被创建。指针可以随时指向任意类型的内存块。

(1)修改内容上的差别

  1. char a[] = “hello”;  
  2. a[0] = ‘X’;  
  3. char *p = “world”; // 注意p 指向常量字符串  
  4. p[0] = ‘X’; // 编译器不能发现该错误,运行时错误 

(2) 用运算符sizeof 可以计算出数组的容量(字节数)。sizeof(p),p 为指针得到的是一个指针变量的字节数,而不是p 所指的内存容量。C++/C 语言没有办法知道指针所指的内存容量,除非在申请内存时记住它。注意当数组作为函数的参数进行传递时,该数组自动退化为同类型的指针。

  1. char a[] = "hello world";  
  2. char *p = a;  
  3. cout<< sizeof(a) << endl; // 12 字节  
  4. cout<< sizeof(p) << endl; // 4 字节  
  5. 计算数组和指针的内存容量  
  6. void Func(char a[100])  
  7. {  
  8. cout<< sizeof(a) << endl; // 4 字节而不是100 字节  

34.类成员函数的重载、覆盖和隐藏区别?

答案:

a.成员函数被重载的特征:

(1)相同的范围(在同一个类中);

(2)函数名字相同;

(3)参数不同;

(4)virtual 关键字可有可无。

b.覆盖是指派生类函数覆盖基类函数,特征是:

(1)不同的范围(分别位于派生类与基类);

(2)函数名字相同;

(3)参数相同;

(4)基类函数必须有virtual 关键字。

c.“隐藏”是指派生类的函数屏蔽了与其同名的基类函数,规则如下:

(1)如果派生类的函数与基类的函数同名,但是参数不同。此时,不论有无virtual关键字,基类的函数将被隐藏(注意别与重载混淆)。

(2)如果派生类的函数与基类的函数同名,并且参数也相同,但是基类函数没有virtual 关键字。此时,基类的函数被隐藏(注意别与覆盖混淆)

35. There are two int variables: a and b, don‘t use “if”, “? :”, “switch”or other judgement statements, find out the biggest one of the two numbers.

答案:( ( a + b ) + abs( a - b ) ) / 2

36. 如何打印出当前源文件的文件名以及源文件的当前行号?

答案:

cout << __FILE__ ;

cout<<__LINE__ ;

__FILE__和__LINE__是系统预定义宏,这种宏并不是在某个文件中定义的,而是由编译器定义的。

37. main 主函数执行完毕后,是否可能会再执行一段代码,给出说明?

答案:可以,可以用_onexit 注册一个函数,它会在main 之后执行int fn1(void), fn2(void), fn3(void), fn4 (void);

  1. void main( void )  
  2. {  
  3. String str("zhanglin");  
  4. _onexit( fn1 );  
  5. _onexit( fn2 );  
  6. _onexit( fn3 );  
  7. _onexit( fn4 );  
  8. printf( "This is executed first.\n" );  
  9. }  
  10. int fn1()  
  11. {  
  12. printf( "next.\n" );  
  13. return 0;  
  14. }  
  15. int fn2()  
  16. {  
  17. printf( "executed " );  
  18. return 0;  
  19. }  
  20. int fn3()  
  21. {  
  22. printf( "is " );  
  23. return 0;  
  24. }  
  25. int fn4()  
  26. {  
  27. printf( "This " );  
  28. return 0;  
  29. }  
  30. 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.  

38. 如何判断一段程序是由C 编译程序还是由C++编译程序编译的?

答案:

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

39.文件中有一组整数,要求排序后输出到另一个文件中

答案:

  1. #i nclude  
  2.  
  3. using namespace std;  
  4.  
  5.  
  6. void Order(vector<int>& data) //bubble sort  
  7. {  
  8. int count = data.size() ;  
  9. int tag = false ; // 设置是否需要继续冒泡的标志位  
  10. for ( int i = 0 ; i < count ; i++)  
  11. {  
  12. for ( int j = 0 ; j < count - i - 1 ; j++)  
  13. {  
  14. if ( data[j] > data[j+1])  
  15. {  
  16. tag = true ;  
  17. int temp = data[j] ;  
  18. data[j] = data[j+1] ;  
  19. data[j+1] = temp ;  
  20. }  
  21. }  
  22. if ( !tag )  
  23. break ;  
  24. }  
  25. }  
  26.  
  27.  
  28. void main( void )  
  29. {  
  30. vector<int>data;  
  31. ifstream in("c:\\data.txt");  
  32. if ( !in)  
  33. {  
  34. cout<<"file error!";  
  35. exit(1);  
  36. }  
  37. int temp;  
  38. while (!in.eof())  
  39. {  
  40. in>>temp;  
  41. data.push_back(temp);  
  42. }  
  43. in.close(); //关闭输入文件流  
  44. Order(data);  
  45. ofstream out("c:\\result.txt");  
  46. if ( !out)  
  47. {  
  48. cout<<"file error!";  
  49. exit(1);  
  50. }  
  51. for ( i = 0 ; i < data.size() ; i++)  
  52. out<<data[i]<<< span="">" ";  
  53. out.close(); //关闭输出文件流  
  54. }

0 0
原创粉丝点击