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 閱讀(417) 評論(0)  編輯  收藏

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


          網站導航:
           
          主站蜘蛛池模板: 肃宁县| 新乐市| 仁化县| 大冶市| 翼城县| 焉耆| 体育| 常山县| 含山县| 昆山市| 宝坻区| 望城县| 兰溪市| 藁城市| 湖南省| 交口县| 揭阳市| 津南区| 长葛市| 广平县| 东安县| 乌兰浩特市| 洛川县| 大庆市| 黎平县| 安龙县| 高尔夫| 河北区| 文成县| 沙洋县| 玉林市| 广东省| 蕉岭县| 灌阳县| 吉水县| 永修县| 鹿泉市| 仲巴县| 灵宝市| 长海县| 共和县|