Jafe Lee

            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理 ::
            49 隨筆 :: 0 文章 :: 24 評論 :: 0 Trackbacks
          一個枚舉類型是不能extends任何類或另一個枚舉類型的。但是可以實現一個或多個接口。例如
          package?implinterface;

          public?interface?Abbrevable
          {
          ????String?abbrev();
          }

          package?implinterface;

          public?interface?Multiplierable
          {
          ????
          double?multiplier();
          }

          package?implinterface;
          public?enum?Prefix?implements?Abbrevable,?Multiplierable
          {
          ????
          //?These?are?the?values?of?this?enumerated?type.
          ????
          //?Each?one?is?followed?by?constructor?arguments?in?parentheses.
          ????
          //?The?values?are?separated?from?each?other?by?commas,?and?the
          ????
          //?list?of?values?is?terminated?with?a?semicolon?to?separate?it?from
          ????
          //?the?class?body?that?follows.
          ????MILLI("m",?.001),?
          ????CENTI(
          "c",?.01),?
          ????DECI(
          "d"),?
          ????DECA(
          "D",?10.0),?
          ????HECTA(
          "h",?100.0),?
          ????KILO(
          "k",?1000.0);??//?Note?semicolon

          ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
          //?semicolon

          ????
          //?This?is?the?constructor?invoked?for?each?value?above.
          ????private?Prefix(String?abbrev,?double?multiplier)
          ????{
          ????????
          this.abbrev?=?abbrev;
          ????????
          this.multiplier?=?multiplier;
          ????}
          ????
          ????
          //Another?constructor
          ????private?Prefix(String?abbrev)
          ????{
          ????????
          this.abbrev?=?abbrev;
          ????????
          this.multiplier?=?.1;
          ????}
          ????
          ????
          //?These?are?the?private?fields?set?by?the?constructor
          ????private?String?abbrev;
          ????
          private?double?multiplier;

          ????
          //?These?are?accessor?methods?for?the?fields.?They?are?instance?methods
          ????
          //?of?each?value?of?the?enumerated?type.
          ????public?String?abbrev()
          ????{
          ????????
          return?abbrev;
          ????}

          ????
          public?double?multiplier()
          ????{
          ????????
          return?multiplier;
          ????}
          }


          package?implinterface;
          public?class?TestPrefix
          {
          ????
          public?static?void?main(String[]?args)
          ????{
          ????????Prefix?p?
          =?Prefix.MILLI;
          ????????System.out.println(p.abbrev());
          ????????System.out.println(Prefix.
          class);
          ????}
          }


          posted on 2007-09-08 16:05 Jafe Lee 閱讀(421) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 汉沽区| 泸水县| 渭源县| 芜湖县| 任丘市| 广汉市| 平泉县| 胶州市| 蒙山县| 昭通市| 拉萨市| 敦化市| 乳山市| 浠水县| 滁州市| 富宁县| 巫山县| 平果县| 重庆市| 镇坪县| 泸州市| 定陶县| 科技| 宜昌市| 保定市| 开平市| 巴彦淖尔市| 义乌市| 正蓝旗| 德州市| 习水县| 兴和县| 蚌埠市| 射洪县| 探索| 深泽县| 枣强县| 涞源县| 肃宁县| 甘孜| 宁夏|