国产激情久久久久影院小草_国产91高跟丝袜_99精品视频99_三级真人片在线观看

嵌入式面試題最新

時間:2024-10-04 14:28:55 嵌入式培訓 我要投稿

嵌入式面試題2016最新

  嵌入式系統(tǒng)一般指非PC系統(tǒng),通常完成一種或多種特定的計算機功能。那么嵌入式C語言難不難,下面yjbys小編為大家分享最新嵌入式C語言面試試題,歡迎參考學習!

嵌入式面試題2016最新

  1. 以下三條輸出語句分別輸出什么?[C易]

  char str1[] = "abc";

  char str2[] = "abc";

  const char str3[] = "abc";

  const char str4[] = "abc";

  const char* str5 = "abc";

  const char* str6 = "abc";

  cout << boolalpha << ( str1==str2 ) << endl; // 輸出什么?

  cout << boolalpha << ( str3==str4 ) << endl; // 輸出什么?

  cout << boolalpha << ( str5==str6 ) << endl; // 輸出什么?

  13. 非C++內(nèi)建型別 A 和 B,在哪幾種情況下B能隱式轉(zhuǎn)化為A?[C++中等]

  答:

  a. class B : public A { ……} // B公有繼承自A,可以是間接繼承的

  b. class B { operator A( ); } // B實現(xiàn)了隱式轉(zhuǎn)化為A的轉(zhuǎn)化

  c. class A { A( const B& ); } // A實現(xiàn)了non-explicit的參數(shù)為B(可以有其他帶默認值的參數(shù))構(gòu)造函數(shù)

  d. A& operator= ( const A& ); // 賦值操作,雖不是正宗的隱式類型轉(zhuǎn)換,但也可以勉強算一個

  12. 以下代碼中的兩個sizeof用法有問題嗎?[C易]

  void UpperCase( char str[] ) // 將 str 中的小寫字母轉(zhuǎn)換成大寫字母

  { for( size_t i=0; iif( 'a'<=str[i] && str[i]<='z' )

  str[i] -= ('a'-'A' );

  } char str[] = "aBcDe";

  cout << "str字符長度為: " << sizeof(str)/sizeof(str[0]) << endl;

  UpperCase( str );

  cout << str << endl;

  7. 以下代碼有什么問題?[C難]

  void char2Hex( char c ) // 將字符以16進制表示

  { char ch = c/0x10 + '0'; if( ch > '9' ) ch += ('A'-'9'-1);

  char cl = c%0x10 + '0'; if( cl > '9' ) cl += ('A'-'9'-1);

  cout << ch << cl << ' ';

  } char str[] = "I love 中國";

  for( size_t i=0; ichar2Hex( str[i] );

  cout << endl;

  4. 以下代碼有什么問題?[C++易]

  struct Test

  { Test( int ) {}

  Test() {}

  void fun() {}

  };

  void main( void )

  { Test a(1);

  a.fun();

  Test b();

  b.fun();

  }

  5. 以下代碼有什么問題?[C++易]

  cout << (true?1:"1") << endl;

  8. 以下代碼能夠編譯通過嗎,為什么?[C++易]

  unsigned int const size1 = 2;

  char str1[ size1 ];

  unsigned int temp = 0;

  cin >> temp;

  unsigned int const size2 = temp;

  char str2[ size2 ];

  9. 以下代碼中的輸出語句輸出0嗎,為什么?[C++易]

  struct CLS

  { int m_i;

  CLS( int i ) : m_i(i) {}

  CLS()

  { CLS(0);

  } };

  CLS obj;

  cout << obj.m_i << endl;

  10. C++中的空類,默認產(chǎn)生哪些類成員函數(shù)?[C++易]

  答:

  class Empty

  { public:

  Empty(); // 缺省構(gòu)造函數(shù)

  Empty( const Empty& ); // 拷貝構(gòu)造函數(shù)

  ~Empty(); // 析構(gòu)函數(shù)

  Empty& operator=( const Empty& ); // 賦值運算符

  Empty* operator&(); // 取址運算符

  const Empty* operator&() const; // 取址運算符 const

  };

  3. 以下兩條輸出語句分別輸出什么?[C++難]

  float a = 1.0f;

  cout << (int)a << endl;

  cout << (int&)a << endl;

  cout << boolalpha << ( (int)a == (int&)a ) << endl; // 輸出什么?

  float b = 0.0f;

  cout << (int)b << endl;

  cout << (int&)b << endl;

  cout << boolalpha << ( (int)b == (int&)b ) << endl; // 輸出什么?

  2. 以下反向遍歷array數(shù)組的方法有什么錯誤?[STL易]

  vector array;

  array.push_back( 1 );

  array.push_back( 2 );

  array.push_back( 3 );

  for( vector::size_type i=array.size()-1; i>=0; --i ) // 反向遍歷array數(shù)組

  { cout << array[i] << endl;

  }

  6. 以下代碼有什么問題?[STL易]

  typedef vector IntArray;

  IntArray array;

  array.push_back( 1 );

  array.push_back( 2 );

  array.push_back( 2 );

  array.push_back( 3 );

  // 刪除array數(shù)組中所有的2

  for( IntArray::iterator itor=array.begin(); itor!=array.end(); ++itor )

  { if( 2 == *itor ) array.erase( itor );

  }

  11. 寫一個函數(shù),完成內(nèi)存之間的拷貝。[考慮問題是否全面]

  答:

  void* mymemcpy( void *dest, const void *src, size_t count )

  {

  char* pdest = static_cast( dest );

  const char* psrc = static_cast( src );

  if( pdest>psrc && pdest{

  for( size_t i=count-1; i!=-1; --i )

  pdest[i] = psrc[i];

  }

  else

  {

  for( size_t i=0; ipdest[i] = psrc[i];

  }

  return dest;

  }

  int main( void )

  {

  char str[] = "0123456789";

  mymemcpy( str+1, str+0, 9 );

  cout << str << endl;

  system( "Pause" );

  return 0;

  }

【嵌入式面試題最新】相關文章:

2016最新嵌入式面試題及答案08-20

2016最新公司嵌入式考試面試題庫07-07

嵌入式面試題及答案「C語言」10-06

2017年嵌入式面試題筆試「精選」06-28

嵌入式開發(fā)—C語言面試題11-07

2017年嵌入式軟件面試題10-02

2016年嵌入式面試題及答案06-25

嵌入式C語言面試題(附答案)06-15

2016年公司嵌入式面試題及答案08-14

嵌入式C/C++面試題201610-10