猎英计划:Senior Develop Leader

Job Title: Senior Develop Leader

Work Place:Shang Hai

Department: VSG_VS_AES_CSTS.SH

Job Description:

1. Technical skills:

a. Skilled for Java script (Ajax), JS component develop experience is preferred(more than 3 years)

b. Skilled for J2EE technology and  architecture.(more than 3 years)

c. Familiar with SOAP, Web service, WSDL etc.(more than 3 years)

d. Skilled for XML,XSD,XSLT,XPATH(more than 3 years)

e. Familiar with Oracle or DB2(more than 3 years)

f. Design or architecture experience is preferred(more than 1 year)

g. Know about the workflow(optional)

h. Familiar with JMS or some relate experiences(optional)

2. English Requirements :

     a. Excellent communication skills in English

     b. Forign enterprise experience is preferred

3. Management Skills:

    a. More than 2 years project management experience

    b. Can wirte the project plan

    c. Can guide Junior staff to finish the task

    d. Good communication skill

    e. Hard worker

    f. Project resource coordinator (optional)

 

contact me:
mail : rcyl2003@gmail.com
MSN  : rcyl2003@hotmail.com

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这段代码中存在一个问题,即College类继承自Senior类,但是Senior类中的printScore函数已经是虚函数,因此不需要再次声明为虚函数。修改后的代码如下: ``` #include <iostream> using namespace std; // 抽象类 class Student { public: virtual void printScore() = 0; // 纯虚函数 }; // 高中生类 class Senior: public Student { public: Senior(double p, double c): physics(p), chemistry(c) {} // 构造函数 void printScore() override { cout << "Physics: " << physics << ", Chemistry: " << chemistry << endl; } // 打印成绩函数 private: double physics; double chemistry; }; // 大学生类 class College: public Senior { public: College(double p, double c, double o): Senior(p, c), OOP(o) {} // 构造函数 void printScore() override { cout << "Physics: " << physics << ", Chemistry: " << chemistry << ", OOP: " << OOP << endl; } // 打印成绩函数 private: double OOP; }; int main() { Senior s(85, 90); // 创建高中生对象 College c(85, 90, 95); // 创建大学生对象 Student* p1 = &s; // 使用基类指针指向高中生对象,实现多态 Student* p2 = &c; // 使用基类指针指向大学生对象,实现多态 p1->printScore(); // 调用高中生的打印成绩函数 p2->printScore(); // 调用大学生的打印成绩函数 return 0; } ``` 修改后的代码中,Senior类中的printScore函数没有再次声明为虚函数,而是使用了override关键字,表示该函数是重写了基类中的虚函数。这样可以提高代码的可读性,并且避免了在派生类中误写成非虚函数的情况。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值