西门子笔试归来

时间:2021-02-10 14:57:31 综合指导 我要投稿

西门子笔试归来

  刚刚从西十二胜利大逃亡,呵呵,西门子的笔试也太bt了!什么都要考,

Software Engineering Process ,UML/design patterns ,Java ,C /C++,Database,

Hardware,全E文的.,看来西门子要“全才啊”!全球500强的要求也太高了吧,呵呵,看来自己也需要全面提高啊!

附:西门子笔试C++编程题一道:

写出程序的output
#i nclude

class A {
private:
    int num;
public:
 A() {
  cout<<"Default constructor"<< endl;
 }
 ~A() {
  cout<<"Desconstructor"<< endl;
  cout< }
 A(const A &a){
  cout<<"Copy constructor"< }
 void operator=(const A &a) {
  cout<<"Overload operator"< }
 void SetNum(int n) {
  num=n;
 }
};

void main()
{
 A a1;
 A a2(a1);
 A a3=a1;  
 A &a4=a1;
 a1.SetNum(1);
 a2.SetNum(2);
 a3.SetNum(3);
 a4.SetNum(4);
}

 

【西门子笔试归来】相关文章:

长假归来后工作怎么开展10-25

中兴笔试面试经验03-12

华为笔试网络题03-11

面试笔试题03-22

保利面试笔试03-22

笔试的面试技巧11-21

考研英语笔试答题技巧03-19

笔试的几个面试技巧04-14

有关面试的笔试题03-19

护士面试笔试题03-19