西门子笔试经验

时间:2024-07-01 04:09:10 资料大全 我要投稿

西门子笔试经验

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

西门子笔试经验

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

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

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

写出程序的output
#i nclude <iostream.h>

class A {
private:
    int num;
public:
 A() {
  cout<<"Default constructor"<< endl;
 }
 ~A() {
  cout<<"Desconstructor"<< endl;
  cout<<num<<endl;
 }
 A(const A &a){
  cout<<"Copy constructor"<<endl;
 }
 void operator=(const A &a) {
  cout<<"Overload operator"<<endl;
 }
 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);

【西门子笔试经验】相关文章:

西门子的笔试经验07-29

西门子笔试经验实习分享07-20

西门子管理咨询笔试题目06-25

中海地产笔试经验学生笔试经验08-27

惠普笔试经验英语笔试10-18

金山笔试经验网游笔试08-03

KPMG笔试经验上海笔试07-05

笔试经验归纳笔试分类10-08

MBA笔试经验笔试准则06-13

网上笔试经验07-19