JAVA认证真题:Java笔试题附答案
来源:优易学  2011-11-28 10:48:40   【优易学:中国教育考试门户网】   资料下载   IT书店

 

  三、判断题
  1.Java程序中的起始类名称必须与存放该类的文件名相同。()
  答案:正确
  2.Unicode是用16位来表示一个字的。()
  答案:正确
  3.原生类中的数据类型均可任意转换。()
  答案:错误
  1.分别写出BOOL,int,float,指针类型的变量a 与“零”的比较语句。
  答案:
  BOOL : if ( !a ) orif(a)
  int : if ( a == 0)
  float : const EXPRESSION EXP = 0.000001
  if ( a < EXP && a >-EXP)
  pointer : if ( a !=NULL) or if(a == NULL)
  2.请说出const与#define 相比,有何优点?
  答案:1) const常量有数据类型,而宏常量没有数据类型。编译器可以对前者进行类型安全检查。而对后者只进行字符替换,没有类型安全检查,并且在字符替换可能会产生意料不到的错误。
  2) 有些集成化的调试工具可以对const 常量进行调试,但是不能对宏常量进行调试。
  3.简述数组与指针的区别?
  数组要么在静态存储区被创建(如全局数组),要么在栈上被创建。指针可以随时指向任意类型的内存块。
  (1)修改内容上的差别
  char a[]= “hello”;
  a[0] = ‘X’;
  char *p = “world”; // 注意p 指向常量字符串
  p[0] = ‘X’;// 编译器不能发现该错误,运行时错误
  (2) 用运算符sizeof 可以计算出数组的容量(字节数)。sizeof(p),p为指针得到的是一个指针变量的字节数,而不是p 所指的内存容量。C++/C语言没有办法知道指针所指的内存容量,除非在申请内存时记住它。注意当数组作为函数的参数进行传递时,该数组自动退化为同类型的指针。
  char a[] ="hello world";
  char *p = a;
  cout<< sizeof(a) << endl; // 12字节
  cout<< sizeof(p) << endl; // 4 字节
  计算数组和指针的内存容量
  voidFunc(char a[100])
  {
  cout<< sizeof(a) << endl; // 4 字节而不是100字节
  }
  4.类成员函数的重载、覆盖和隐藏区别?
  答案:
  a.成员函数被重载的特征:
  (1)相同的范围(在同一个类中);
  (2)函数名字相同;
  (3)参数不同;
  (4)virtual 关键字可有可无。
  b.覆盖是指派生类函数覆盖基类函数,特征是:
  (1)不同的范围(分别位于派生类与基类);
  (2)函数名字相同;
  (3)参数相同;
  (4)基类函数必须有virtual 关键字。
  c.“隐藏”是指派生类的函数屏蔽了与其同名的基类函数,规则如下:
  (1)如果派生类的函数与基类的函数同名,但是参数不同。此时,不论有无virtual关键字,基类的函数将被隐藏(注意别与重载混淆)。
  (2)如果派生类的函数与基类的函数同名,并且参数也相同,但是基类函数没有virtual 关键字。此时,基类的函数被隐藏(注意别与覆盖混淆)
  5. There are two int variables: a and b, don’t use “if”, “? :”, “switch”orother judgement statements, find out the biggest one of the two numbers.
  答案:( ( a + b ) + abs( a - b ) ) / 2

  6. 如何打印出当前源文件的文件名以及源文件的当前行号?
  答案:
  cout << __FILE__ ;
  cout<<__LINE__ ;
  __FILE__和__LINE__是系统预定义宏,这种宏并不是在某个文件中定义的,而是由编译器定义的。
  7. main主函数执行完毕后,是否可能会再执行一段代码,给出说明?
  答案:可以,可以用_onexit 注册一个函数,它会在main 之后执行intfn1(void), fn2(void), fn3(void), fn4 (void);
  void main( void )
  {
  String str("zhanglin");
  _onexit( fn1 );
  _onexit( fn2 );
  _onexit(fn3 );
  _onexit( fn4 );
  printf( "This is executed first.\n" );
  }
  int fn1()
  {
  printf( "next.\n" );
  return 0;
  }
  int fn2()
  {
  printf( "executed " );
  return 0;
  }
  int fn3()
  {
  printf( "is " );
  return 0;
  }
  int fn4()
  {
  printf( "This ");
  return 0;
  }
  The _onexit function is passed the address of afunction (func) to be called when the program terminates normally. Successivecalls to _onexit create a register of functions that are executed in LIFO(last-in-first-out) order. The functions passed to _onexit cannot takeparameters.
  8. 如何判断一段程序是由C 编译程序还是由C++编译程序编译的?
  答案:
  #ifdef __cplusplus
  cout<<"c++";
  #else
  cout<<"c";
  #endif
  9.文件中有一组整数,要求排序后输出到另一个文件中
  答案:
  #i nclude
  #i nclude
  using namespace std;
  void Order(vector& data)//bubble sort
  {
  int count = data.size() ;
  int tag = false ; //设置是否需要继续冒泡的标志位
  for ( int i = 0 ; i < count ; i++)
  {
  for ( int j =0 ; j < count - i - 1 ; j++)
  {
  if ( data[j] > data[j+1])
  {
  tag = true ;
  int temp = data[j] ;
  data[j] = data[j+1] ;
  data[j+1] = temp ;
  }
  }
  if ( !tag )
  break ;
  }
  }
  void main( void )
  {
  vectordata;
  ifstreamin("c:\\data.txt");
  if ( !in)
  {
  cout<<"file error!";
  exit(1);
  }
  int temp;
  while (!in.eof())
  {
  in>>temp;
  data.push_back(temp);
  }
  in.close(); //关闭输入文件流
  Order(data);
  ofstream out("c:\\result.txt");
  if ( !out)
  {
  cout<<"fileerror!";
  exit(1);
  }
  for ( i = 0 ; i < data.size() ; i++)
  out<  10. 链表题:一个链表的结点结构
  struct Node
  {
  int data ;
  Node *next ;
  };
  typedef struct Node Node ;
  (1)已知链表的头结点head,写一个函数把这个链表逆序 ( Intel)
  Node * ReverseList(Node*head) //链表逆序
  {
  if ( head == NULL || head->next == NULL )
  returnhead;
  Node *p1 = head ;
  Node *p2 = p1->next ;
  Node *p3 =p2->next ;
  p1->next = NULL ;
  while ( p3 != NULL )
  {
  p2->next = p1 ;
  p1 = p2 ;
  p2 = p3 ;
  p3 = p3->next ;
  }
  p2->next = p1 ;
  head = p2 ;
  return head ;
  }

上一页  [1] [2] [3] 下一页

责任编辑:小草

文章搜索:
 相关文章
热点资讯
热门课程培训