java用介面、多態、繼承、類計算三角形和矩形周長及面積的方法_java

來源:互聯網
上載者:User

本文執行個體講述了java用介面、多態、繼承、類計算三角形和矩形周長及面積的方法。分享給大家供大家參考。具體如下:

定義介面規範:

/**  * @author vvv  * @date 2013-8-10 上午08:56:48  */ package com.duotai; /**  *  *  */ public interface Shape {   public double area();   public double longer(); } /**  * @author vvv  * @date 2013-8-10 上午09:10:06  */ package com.duotai; /**  *  *  */ public class Triangle implements Shape {   double s1;   double s2;   double s3;   // 初始化一個三角形對象,並賦予該三角形三邊長   public Triangle(double s1, double s2, double s3) {     if (isTri(s1, s2, s3)) {       this.s1 = s1;       this.s2 = s2;       this.s3 = s3;     } else {       System.out.println("輸入的三邊長" + s1 + "、" + s2 + "、" + s3      + "不能組成一個三角形,請重新輸入三邊長!");     }   }   // 判斷是否是個三角形   public boolean isTri(double s1, double s2, double s3) {     if (s1 + s2 < s3) {       return false;     }     if (s1 + s3 < s2) {       return false;     }     if (s2 + s3 < s1) {       return false;     }     return true;   }   /*    * (non-Javadoc)    *    * @see com.duotai.Shape#area()    */   @Override   public double area() {     double p = (s1 + s2 + s3) / 2;     return Math.sqrt(p * (p - s1) * (p - s2) * (p - s3));   }   /*    * (non-Javadoc)    *    * @see com.duotai.Shape#longer()    */   @Override   public double longer() {     return s1 + s2 + s3;   } } /**  * @author vvv  * @date 2013-8-10 上午09:12:06  */ package com.duotai; /**  *  *  */ public class Director implements Shape {   double s1;   double s2;   // 初始化一個長方形,並賦予該長方形兩邊長   public Director(double s1, double s2) {     this.s1 = s1;     this.s2 = s2;   }   /*    * (non-Javadoc)    *    * @see com.duotai.Shape#area()    */   @Override   public double area() {     // TODO Auto-generated method stub     return s1 * s2;   }   /*    * (non-Javadoc)    *    * @see com.duotai.Shape#longer()    */   @Override   public double longer() {     // TODO Auto-generated method stub     return 2 * (s1 + s2);   } } /**  * @author vvv  * @date 2013-8-10 上午09:13:30  */ package com.duotai; /**  *  *  */ public class Test {   /**    * @param args    */   public static void main(String[] args) {     Shape triangle = new Triangle(3, 4, 8);    // 建立一個三邊長為3,4,5的三角形     Shape tri = new Triangle(3, 4, 5);     Shape director = new Director(10, 20);    // 建立一個兩邊長為10,20的長方形     System.out.println("三角形triangle的周長為:" + triangle.longer());     System.out.println("三角形triangle的面積為:" + triangle.area());     System.out.println("三角形tri的周長為:" + tri.longer());     System.out.println("三角形tri的面積為:" + tri.area());     System.out.println("該長方形的周長為:" + director.longer());     System.out.println("該長方形的面積為:" + director.area());   } }

希望本文所述對大家的java程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.