亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java實現一個寵物商店管理

發布時間:2020-10-30 14:39:55 來源:億速云 閱讀:204 作者:Leah 欄目:開發技術

Java實現一個寵物商店管理?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

第一種實現方式:抽象類和對象數組

public abstract class AbstractPet //定義寵物模板
{
 private String name;  //名稱
 private String color;  //顏色
 private int age;   //年齡

 public AbstractPet(){}
 public AbstractPet(String name, String color, int age){
  this.setName(name);
  this.setColor(color);
  this.setAge(age);
 }

 public String getName(){
  return this.name;
 }
 public String getColor(){
  return this.color;
 }
 public int getAge(){
  return this.age;
 }
 public void setName(String name){
  this.name = name;
 }
 public void setColor(String color){
  this.color = color;
 }
 public void setAge(int age){
  if (age > 0)
  {
   this.age = age;
  }else{
   this.age = 1;
  }
 } 

 //定義抽象方法
 public abstract void printInfo();   //自我介紹
}
public class Dog extends AbstractPet
{
 public Dog(String name, String color, int age){
  super(name, color, age);
 }
 //實現抽象方法
 public void printInfo(){ //自我介紹
  System.out.println("狗: " + super.getName() + ",年齡 " + super.getAge() + "歲,顏色:" + super.getColor());
 }
}
public class Cat extends AbstractPet
{
 public Cat(String name, String color, int age){
  super(name, color, age);
 }
 //實現抽象方法
 public void printInfo(){ //自我介紹
  System.out.println("狗: " + super.getName() + ",年齡 " + super.getAge() + "歲,顏色:" + super.getColor());
 }
}
public class PetShop
{
 private AbstractPet[] pets;
 private int foot; //定義下標

 public PetShop(int len){ //寵物數量由用戶確定
  if (len > 0)
  {
   this.pets = new AbstractPet[len];
  }else{
   this.pets = new AbstractPet[1];
  }
 }

 //添加寵物的方法
 public boolean add(AbstractPet pet){
  if (this.foot < this.pets.length)
  {
   this.pets[foot] = pet;
   this.foot ++;
   return true;
  }else{
   return false;
  }
 }

 //定義查詢寵物的方法[提供按照種類查詢和按照姓名查詢兩種方法]
 public AbstractPet[] search(String keyword){
  int n = 0; //定義查詢到的寵物數量
  AbstractPet[] searchPets = null;
  for (int i = 0; i < this.pets.length; i++)
  {
   if (this.pets[i] != null)
   {
    if (this.pets[i].getName().indexOf(keyword) != -1 || this.pets[i].getColor().indexOf(keyword) != -1)
    {
     n++;
    }
   }   
  }
  searchPets = new AbstractPet[n];
  n = 0;
  for (int i = 0; i < this.pets.length; i++)
  {
   if (this.pets[i] != null)
   {
    if (this.pets[i].getName().indexOf(keyword) != -1 || this.pets[i].getColor().indexOf(keyword) != -1)
    {
     searchPets[n] = this.pets[i];
     n ++;
    }
   }   
  }
  return searchPets;
 }
}
public class testPetShop
{
 public static void main(String[] args){
  PetShop p = new PetShop(5);
  p.add(new Dog("狗1", "黑色的", 3));
  p.add(new Dog("狗2", "紅色的", 2));
  p.add(new Cat("貓1", "褐色的", 3));
  p.add(new Cat("貓2", "黃色的", 3));
  p.add(new Cat("貓3", "黑色的", 5));
  p.add(new Dog("狗3", "棕色的", 4));
  print(p.search("黑"));
 }
 public static void print(AbstractPet pets[]){
  for (int i = 0; i < pets.length; i++)
  {
   if (pets[i] != null)
   {
    pets[i].printInfo();
   }   
  }
 }
}

第二種實現方式:接口和對象數組

interface IPet
{
 String getName(); //取得寵物姓名
 String getColor(); //取得寵物顏色
 int getAge();  //取得寵物年齡
 void show();   //顯示寵物信息
}
public class Dog implements IPet
{
 private String name;
 private String color;
 private int age;

 public Dog(String name, String color, int age){
  this.setName(name);
  this.setColor(color);
  this.setAge(age);
 }
 public String getName(){
  return this.name;
 }
 public String getColor(){
  return this.color;
 }
 public int getAge(){
  return this.age;
 }
 public void setName(String name){
  this.name = name;
 }
 public void setColor(String color){
  this.color = color;
 }
 public void setAge(int age){
  if (age < 0 || age > 50)
  {
   this.age = 1; //默認值
  }else{
   this.age = age;
  }
 }
 public void show(){
  System.out.println(this.toString());
 }
 public String toString(){
  return "狗:" + this.getName() + " " + this.getColor() + " " + this.getAge();
 }
}
public class Cat implements IPet
{
 private String name;
 private String color;
 private int age;

 public Cat(String name, String color, int age){
  this.setName(name);
  this.setColor(color);
  this.setAge(age);
 }
 public String getName(){
  return this.name;
 }
 public String getColor(){
  return this.color;
 }
 public int getAge(){
  return this.age;
 }
 public void setName(String name){
  this.name = name;
 }
 public void setColor(String color){
  this.color = color;
 }
 public void setAge(int age){
  if (age < 0 || age > 50)
  {
   this.age = 1; //默認值
  }else{
   this.age = age;
  }
 }
 public void show(){
  System.out.println(this.toString());
 }
 public String toString(){
  return "貓:" + this.getName() + " " + this.getColor() + " " + this.getAge();
 }
}
public class PetShop
{
 private IPet[] pets;
 private int foot;

 public PetShop(int len){ //寵物店的寵物數量由用戶決定
  if (len > 0)
  {
   pets = new IPet[len];
  }else{
   pets = new IPet[1]; //默認最小數量為1
  }
 }
 public boolean add(IPet pet){
  if (this.foot < this.pets.length)
  {
   this.pets[this.foot] = pet;
   this.foot ++;
   return true;
  }else{
   return false;
  }
 }
 public IPet[] search(String keyword){
  //定義一個新的寵物對象數組,用來存儲符合查詢條件的寵物
  IPet[] resultPet = null; //不確定數量,要通過循環得到
  int count = 0; //用來存儲符合查詢條件的寵物數量
  for (int i = 0; i < this.pets.length; i++)
  {
   if (this.pets[i] != null)
   {
    if (this.pets[i].getName().indexOf(keyword) != -1 || this.pets[i].getColor().indexOf(keyword) != -1)
    {
     count ++;
    }
   }
  }
  resultPet = new IPet[count];
  int n = 0;
  for (int i = 0; i < this.pets.length; i++)
  {
   if (this.pets[i] != null)
   {
    if (this.pets[i].getName().indexOf(keyword) != -1 || this.pets[i].getColor().indexOf(keyword) != -1)
    {
     resultPet[n] = this.pets[i];
     n ++;
    }
   }
  }
  return resultPet;
 }
}
public class TestPetShop
{
 public static void main(String[] args){
  //創建一個寵物商店
  PetShop ps = new PetShop(7); //假設可以放置5只寵物
  ps.add(new Dog("旺旺", "黑色的",4));
  ps.add(new Dog("旺財", "白色的",6));
  ps.add(new Dog("小黑", "黃色的",3));
  ps.add(new Cat("波波", "褐色的",7));
  ps.add(new Cat("咪咪", "黑色的",8));
  ps.add(new Cat("小云", "灰色的",2));
  ps.add(new Dog("仔仔", "黃色的",5));
  print(ps.search("色"));
 }
 public static void print(IPet[] pet){
  for (int i = 0; i < pet.length; i++)
  {
   if (pet[i] != null)
   {
    pet[i].show();
   }
  }
 }
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万源市| 乾安县| 龙口市| 谢通门县| 略阳县| 余庆县| 平度市| 和林格尔县| 孝昌县| 漳州市| 开鲁县| 渝北区| 周宁县| 汝城县| 福安市| 申扎县| 应用必备| 衡东县| 城口县| 福贡县| 同心县| 新闻| 绥棱县| 高淳县| 五大连池市| 福清市| 鸡西市| 涞源县| 宾川县| 固始县| 大洼县| 佛坪县| 临颍县| 安新县| 武功县| 宝应县| 工布江达县| 普定县| 右玉县| 涟源市| 清原|