Java 抽象類別練習__java

來源:互聯網
上載者:User
package day09;
/**
 * 僱員樣本:
 * 需求:公司中程式員有姓名、工號、薪水、工作內容。
 * 專案經理除了有姓名、工號、薪水、還有獎金、工作內容。
 * 對給出需求進行資料建模。
 * 
 * 分析:
 * 在這個問題領域中,先找出設計的對象。
 * 通過提煉法。
 * 程式員:
 * 屬性:姓名、工號、薪水
 * 行為:工作
 * 經理:
 * 屬性:姓名、工號、薪水、獎金。
 * 行為:工作
 * 
 * 程式員和經理不存在著直接繼承關係,但是程式員和經理卻具有共性內容。可以進行抽取。因為他們都是公司的僱員可以將程式員和經理進行抽取,建立體系。
 */
//描述僱員
abstract class Employee{
private String name;
private String id;
private double pay;
Employee(String name,String id,double pay){
this.name = name;
this.id = id;
this.pay = pay;
}

public abstract void work();
}


//描述程式員
class Programmer extends Employee{
Programmer(String name,String id,double pay){
super(name,id,pay);
}
public void work(){
System.out.println("code ...");
}
}


//描述經理
class Manager extends Employee{
private int bouns;
Manager(String name,String id,double pay,int bounus){
super(name,id,pay);
this.bouns = bouns;
}

public void work(){
System.out.println("manager");
}
}

public class AbstractTest {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
class Person{
private String name;
private int age;

Person(String name,int age){
this.name = name;
this.age = age;
}
public String getName(){
return name;
}
public void setname(String name){
this.name = name;
}
}


class Student extends Person{
Student(String name,int age){
super(name,age);
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.