凪瀬 Blog
Programming SHOT BAR

目次

Blog 利用状況
  • 投稿数 - 260
  • 記事 - 0
  • コメント - 46601
  • トラックバック - 192
ニュース
広告
  • Java開発者募集中
  • 経歴不問
  • 腕に自信のある方
  • 富山市内
  • (株)凪瀬アーキテクツ
アクセサリ
  • あわせて読みたい
凪瀬悠輝(なぎせ ゆうき)
  • Java技術者
  • お茶好き。カクテル好き。
  • 所属は(株)凪瀬アーキテクツ
  • Twitter:@nagise

書庫

日記カテゴリ

 

本日のカクテルは Enclosing Inner Classです。
日本語ではエンクロージング内部クラスなどといわれます。 Javaの内部クラスはいくつか種類があり、宣言とインスタンス生成の仕方は以下のようになります。

public class Outer {
  /** staticな内部クラスの宣言 */
  public static class StaticInner { }

  /** エンクロージング内部クラスの宣言 */
  public class EnclosingInner { }

  public static void main(String[] args) {
    // ローカル内部クラスの宣言
    class LocalInner { }

    // staticな内部クラス
    StaticInner staticInner = new StaticInner();

    // エンクロージング内部クラス
    Outer outer = new Outer();
    EnclosingInner enclosingInner = outer.new EnclosingInner();

    // ローカル内部クラス
    LocalInner localInner = new LocalInner();

    // 無名クラス
    Runnable runnable = new Runnable() {
      public void run() {
      }
    };
  }
}

今回はこのうちエンクロージング型に絞って話をしましょう。

Outer.javaファイルの中にはOuterクラスが宣言されます。javaファイルにはファイル名と同じクラスが宣言される。これは基本ですね。 内部クラスは、これらトップレベルクラスの内側に宣言されるのです。

エンクロージング型の内部クラスの特徴はOuterクラスのインスタンスと結びつきがあるということです。 newするときには、newの前に外側のクラスのインスタンスを書きます。 あたかもOuterクラスのメソッドのような扱いですね。newの主語はOuterのインスタンスなのです。
ちなみに、Outerクラスのインスタンスメソッド内でエンクロージング内部クラスをnewする場合は

  public void hoge() {
    EnclosingInner enclosingInner = this.new EnclosingInner();
  }

というようにthis.new となります。
そしてthisは省略可能ですから

    EnclosingInner enclosingInner = new EnclosingInner();

というようになります。ですから、省略しない書き方を知らない人が結構いますね。

このエンクロージング内部クラスの内側からはnewするときに指定したOuterクラスのインスタンスが参照できます。 単一のOuterクラスを元に、複数エンクロージング内部クラスのインスタンスを生成すると、まるでstaticフィールドのごとく、 同一のOuterクラスのフィールドが見えるのです。

public class Outer {
  public int outerParam;

  /** エンクロージング内部クラスの宣言 */
  public class EnclosingInner {
    private int innerParam;

    public void hoge() {
      // Outerクラスのフィールドを参照
      System.out.println(Outer.this.outerParam);
      // Innerクラスのフィールドを参照
      System.out.println(this.innerParam);
    }
  }
}

この1対多のオブジェクトの関係は、まるでClassとインスタンスの関係のようですね。

シャノンさんのオブジェクト≠インスタンスという記事では Javaのクラスそのものがインスタンスなのだ、という話がされています。 staticというのはエンクロージング内部クラスにとってのOuterクラスのような存在なのですね。
トップレベルのクラスのnewの主語はこのjava.lang.Classのインスタンスになるのですね。 そして、java.lang.Classのインスタンスというのは通常は単一なのですが、ClassLoaderが変わると別物として振舞うのです。 違うClassLoaderでロードされたClassというのは、同じ型の別インスタンスのような関係になります。

Javaのオブジェクト指向はこのような階層構造を持っている、ちょっと拡張された概念のようです。

投稿日時 : 2007年7月31日 23:05
コメント
  • # re: 内部クラスの階層
    かつのり
    Posted @ 2007/07/31 23:22
    非staticの内部クラスのコンストラクタには昔泣かされた覚えが・・・
    勝手に第一引数に自動的にトップレベルの型が追加されるんですよね。
    リフレクションでどうやっても取得できなくて、
    列挙したらあれれ・・・?みたいな感じで納得しましたよ。
  • # re: 内部クラスの階層
    じゃんぬねっと
    Posted @ 2007/07/31 23:32
    私は this.new 派ですよ。
  • # re: 内部クラスの階層
    凪瀬
    Posted @ 2007/08/01 0:10
    リフレクションはラーの鏡ですからねぇw
    inner class周りは知らない人も多いようなのでもうちょっと補足していきたいところです。

    オブジェクト指向分科会#1のときに、オブジェクト指向的な意味でnewの主語は誰になるんだ!?という話題がありまして、エンクロージング型のnewのときのthis.newだと主語が明確だなぁということを考えていたのでした。
    そのあたりの話題がぼけてしまっていますね。もっと話の流れを明確にしないといけません。blogは勢いで書いているけど、もうちょっと文章を練った方がよいのかな。
  • # re: 内部クラスの階層
    裏口
    Posted @ 2007/08/01 0:44
    相変わらず濃いなあ。
    # たまには普通のカクテル出してくださると嬉しいけどw
  • # re: 内部クラスの階層
    じゃんぬねっと
    Posted @ 2007/08/01 10:33
    >nagise さん
    文章を練りたければ練れば良いでしょうけど、苦痛に感じるこおがあれば元も子もないので今のままの方が良いと思いますよ。やはり Blog 疲れ状態にならないようにしないといけませんよね。

    >裏口さん
    いえいえ、このあたりはコードを書くサイドに立った基本形なネタですよ。設計者側からするとどうでも良いことかもしれませんが、プログラマ側の責任者としては 1 番細かく意識したいところです。
  • # re: 内部クラスの階層
    凪瀬
    Posted @ 2007/08/01 10:52
    クラス設計は難しい課題ですからね。
    一発で成功するのは殊更難しい…。
    だからこそリファクタリングを重ねつつすり合わせていくのかもしれません。

    内部クラスはうまく活用すればコードがすっきりするのですが、設計に生かせるようになるまでは苦労の多い代物なんですよね。具体的な使い方を示唆するほうがいいのかな。
  • # 内部クラスの使いどころ
    凪瀬 Blog
    Posted @ 2007/08/01 23:31
    内部クラスの使いどころ
  • # re: 静的メンバの使い道
    .COM -どっとこむ-
    Posted @ 2007/08/06 17:47
    re: 静的メンバの使い道
  • # radio
    bogemi
    Posted @ 2011/08/26 9:13

    http://www.buysale.ro/anunturi/auto/masini-si-echipamente-agricole/iasi.html - iasi
  • # When I initially commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get four e-mails with the same comment. Is there any way you can remove me from that service? Many thanks!
    When I initially commented I clicked the "Not
    Posted @ 2021/09/05 20:54
    When I initially commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get four e-mails with the same comment.

    Is there any way you can remove me from that service?
    Many thanks!
  • # I for all time emailed this blog post page to all my contacts, since if like to read it next my friends will too.
    I for all time emailed this blog post page to all
    Posted @ 2021/12/25 2:35
    I for all time emailed this blog post page to all my contacts,
    since if like to read it next my friends will too.
  • # I for all time emailed this blog post page to all my contacts, since if like to read it next my friends will too.
    I for all time emailed this blog post page to all
    Posted @ 2021/12/25 2:36
    I for all time emailed this blog post page to all my contacts,
    since if like to read it next my friends will too.
  • # I for all time emailed this blog post page to all my contacts, since if like to read it next my friends will too.
    I for all time emailed this blog post page to all
    Posted @ 2021/12/25 2:36
    I for all time emailed this blog post page to all my contacts,
    since if like to read it next my friends will too.
  • # I for all time emailed this blog post page to all my contacts, since if like to read it next my friends will too.
    I for all time emailed this blog post page to all
    Posted @ 2021/12/25 2:37
    I for all time emailed this blog post page to all my contacts,
    since if like to read it next my friends will too.
  • # how to order doxycycline - https://doxycyclinesale.pro/#
    Doxycycline
    Posted @ 2023/04/22 4:06
    how to order doxycycline - https://doxycyclinesale.pro/#
  • # prednisone 20mg by mail order - https://prednisonesale.pro/#
    Prednisone
    Posted @ 2023/04/22 15:12
    prednisone 20mg by mail order - https://prednisonesale.pro/#
  • # best pill for ed: https://edpills.pro/#
    EdPillsPro
    Posted @ 2023/05/16 3:21
    best pill for ed: https://edpills.pro/#
  • # what is the best ed pill https://edpill.pro/# - ed treatments
    EdPills
    Posted @ 2023/06/27 14:38
    what is the best ed pill https://edpill.pro/# - ed treatments
  • # Paxlovid over the counter https://paxlovid.life/# paxlovid for sale
    Paxlovid
    Posted @ 2023/07/26 6:19
    Paxlovid over the counter https://paxlovid.life/# paxlovid for sale
  • # meet women free
    WayneGurry
    Posted @ 2023/08/09 14:24
    free dating ads: https://datingtopreview.com/# - connecting singles dating site
  • # reputable indian pharmacies
    Jeffreybloft
    Posted @ 2023/08/22 23:39
    https://stromectolonline.pro/# ivermectin 10 mg
  • # buy cytotec pills
    Georgejep
    Posted @ 2023/08/25 5:00
    http://avodart.pro/# where can i buy avodart prices
  • # buy cytotec in usa
    Georgejep
    Posted @ 2023/08/28 5:19
    https://avodart.pro/# can you buy avodart prices
  • # online apotheke deutschland
    Williamreomo
    Posted @ 2023/09/26 12:12
    http://onlineapotheke.tech/# online apotheke versandkostenfrei
    internet apotheke
  • # farmacia online migliore
    Archieonelf
    Posted @ 2023/09/26 13:13
    https://onlineapotheke.tech/# versandapotheke
  • # versandapotheke deutschland
    Williamreomo
    Posted @ 2023/09/26 22:55
    https://onlineapotheke.tech/# gГ?nstige online apotheke
    online apotheke preisvergleich
  • # gГјnstige online apotheke
    Williamreomo
    Posted @ 2023/09/27 4:08
    https://onlineapotheke.tech/# online apotheke preisvergleich
    online apotheke preisvergleich
  • # online apotheke gГјnstig
    Williamreomo
    Posted @ 2023/09/27 8:20
    http://onlineapotheke.tech/# gГ?nstige online apotheke
    versandapotheke deutschland
  • # п»їonline apotheke
    Williamreomo
    Posted @ 2023/09/27 9:35
    https://onlineapotheke.tech/# п»?online apotheke
    versandapotheke
  • # farmacia online miglior prezzo
    Rickeyrof
    Posted @ 2023/09/27 21:40
    acheter sildenafil 100mg sans ordonnance
  • # farmacie online autorizzate elenco
    Rickeyrof
    Posted @ 2023/09/27 22:29
    acheter sildenafil 100mg sans ordonnance
  • # prescription canada
    Dannyhealm
    Posted @ 2023/10/16 17:24
    Love their range of over-the-counter products. https://mexicanpharmonline.shop/# mexican border pharmacies shipping to usa
  • # canadian pharmacies that ship to us
    Dannyhealm
    Posted @ 2023/10/16 19:30
    Efficient service with a personal touch. http://mexicanpharmonline.shop/# mexican pharmaceuticals online
  • # your canada drug store
    Dannyhealm
    Posted @ 2023/10/16 23:54
    Efficient service with a personal touch. http://mexicanpharmonline.shop/# reputable mexican pharmacies online
  • # canadian pharamcy
    Dannyhealm
    Posted @ 2023/10/17 10:01
    Their health and beauty section is fantastic. http://mexicanpharmonline.shop/# mexico drug stores pharmacies
  • # canada meds online
    Dannyhealm
    Posted @ 2023/10/17 23:37
    I'm always impressed with their efficient system. http://mexicanpharmonline.com/# mexico drug stores pharmacies
  • # canadian prescriptions in usa
    Dannyhealm
    Posted @ 2023/10/18 12:18
    Their free health check-ups are a wonderful initiative. https://mexicanpharmonline.shop/# mexican border pharmacies shipping to usa
  • # paxlovid price
    LarryNef
    Posted @ 2023/10/24 7:21
    https://paxlovid.bid/# Paxlovid buy online
  • # buy paxlovid online
    LarryNef
    Posted @ 2023/10/26 6:32
    http://plavix.guru/# Plavix 75 mg price
  • # paxlovid generic
    LarryNef
    Posted @ 2023/10/27 6:15
    http://stromectol.icu/# order minocycline 50mg
  • # farmacia online miglior prezzo https://farmaciait.pro/ comprare farmaci online all'estero
    Farmacia
    Posted @ 2023/12/04 10:14
    farmacia online miglior prezzo https://farmaciait.pro/ comprare farmaci online all'estero
  • # erection pills https://edpills.tech/# non prescription erection pills
    EdPills
    Posted @ 2023/12/23 8:13
    erection pills https://edpills.tech/# non prescription erection pills
  • # can i buy cheap clomid
    RaymondGrido
    Posted @ 2023/12/26 18:41
    https://clomid.site/# can you buy generic clomid without insurance
  • # buy doxycycline
    BobbyHef
    Posted @ 2024/01/06 12:58
    https://doxycyclinebestprice.pro/# generic doxycycline
  • # can you buy clomid now
    JeffreyRom
    Posted @ 2024/01/12 9:24
    http://stromectol.guru/# stromectol 6 mg dosage
  • # prinzide zestoretic
    CharlieThecy
    Posted @ 2024/01/15 15:15
    https://misoprostol.shop/# order cytotec online
  • # acquistare farmaci senza ricetta
    Wendellglaks
    Posted @ 2024/01/16 19:51
    https://tadalafilitalia.pro/# farmacia online senza ricetta
  • # where buy clomid
    AnthonyAnoth
    Posted @ 2024/01/20 18:35
    https://prednisonepharm.store/# prednisone 15 mg daily
  • # buying clomid tablets
    LarryVoP
    Posted @ 2024/01/20 22:45
    Their pet medication section is comprehensive https://clomidpharm.shop/# can i get generic clomid without insurance
  • # can i purchase generic clomid
    LarryVoP
    Posted @ 2024/01/21 3:56
    Quick turnaround on all my prescriptions https://cytotec.directory/# cytotec online
  • # tamoxifen and antidepressants
    Normantug
    Posted @ 2024/01/22 2:27
    https://cytotec.directory/# Misoprostol 200 mg buy online
  • # Pharmacie en ligne livraison 24h
    JerryNef
    Posted @ 2024/01/28 19:36
    http://pharmadoc.pro/# Pharmacie en ligne France
  • # reputable online canadian pharmacies
    Williamzelia
    Posted @ 2024/02/13 9:12
    https://edpill.cheap/# cheapest ed pills online
  • # mexican rx online
    TravisFlaks
    Posted @ 2024/02/15 6:02
    https://mexicanph.com/# mexico drug stores pharmacies
    reputable mexican pharmacies online
  • # zestril 5 mg india
    Charlesmax
    Posted @ 2024/02/21 9:49
    https://furosemide.guru/# lasix generic
  • # online chatting sites
    Thomasjax
    Posted @ 2024/03/03 0:06
    https://sweetiefox.online/# swetie fox
  • # beste dating site
    Thomasjax
    Posted @ 2024/03/03 4:55
    http://sweetiefox.online/# Sweetie Fox izle
  • # dating personals free
    Thomasjax
    Posted @ 2024/03/04 2:26
    http://angelawhite.pro/# ?????? ????
  • # internet dating service
    Thomasjax
    Posted @ 2024/03/04 22:32
    http://angelawhite.pro/# Angela White izle
  • # senior singles chat
    RodrigoGrany
    Posted @ 2024/03/05 8:18
    https://sweetiefox.online/# sweety fox
  • # japanese dating
    Thomasjax
    Posted @ 2024/03/05 8:48
    https://abelladanger.online/# abella danger izle
  • # best dating site usa
    Thomasjax
    Posted @ 2024/03/06 1:22
    http://angelawhite.pro/# Angela White video
  • # best datings sites
    HowardBox
    Posted @ 2024/03/07 14:00
    12 single dating site: https://miamalkova.life/# mia malkova latest
  • # free datinsites chat
    HowardBox
    Posted @ 2024/03/10 0:14
    top rated dating websites: http://evaelfie.site/# eva elfie full videos
  • # African Media Emphasize: Put off Informed on Celebrities & Trends!
    Jackieles
    Posted @ 2024/03/26 2:34
    In our online broadside, we contend to be your reliable start into the latest dirt take media personalities in Africa. We prove profitable staunch prominence to swiftly covering the most fitting events apropos of illustrious figures on this continent.

    Africa is well-heeled in talents and unique voices that contours the cultural and collective scene of the continent. We convergence not lone on celebrities and showbiz stars but also on those who require significant contributions in diverse fields, be it knowledge, manoeuvring, science, or philanthropy https://afriquestories.com/la-comedienne-zackougla-demande-de-l-aide-lors-de/

    Our articles lay down readers with a sweeping overview of what is happening in the lives of media personalities in Africa: from the latest expos? and events to analyzing their influence on society. We persevere in road of actors, musicians, politicians, athletes, and other celebrities to cater you with the freshest information firsthand.

    Whether it's an limited sound out with a revered big draw, an investigation into licentious events, or a rehashing of the latest trends in the African showbiz mankind, we utmost to be your fundamental authority of report yon media personalities in Africa. Subscribe to our hand-out to hamper conversant with back the hottest events and exciting stories from this captivating continent.
  • # UK News Centre: Stay In touch on Civil affairs, Succinctness, Learning & More
    Tommiemayox
    Posted @ 2024/03/28 23:18
    Acceptable to our dedicated platform in return staying cultured beside the latest communication from the Joint Kingdom. We conscious of the import of being well-versed far the happenings in the UK, whether you're a denizen, an expatriate, or purely interested in British affairs. Our comprehensive coverage spans across diversified domains including politics, briefness, savoir vivre, pleasure, sports, and more.

    In the kingdom of politics, we keep you updated on the intricacies of Westminster, covering conforming debates, government policies, and the ever-evolving prospect of British politics. From Brexit negotiations and their burden on barter and immigration to domestic policies affecting healthcare, education, and the medium, we victual insightful inquiry and propitious updates to refrain from you navigate the complex area of British governance - https://newstopukcom.com/5-of-the-funniest-michael-scott-moments-on-the/.

    Monetary despatch is mandatory against adroitness the monetary pulse of the nation. Our coverage includes reports on sell trends, organization developments, and cost-effective indicators, sacrifice valuable insights for investors, entrepreneurs, and consumers alike. Whether it's the latest GDP figures, unemployment rates, or corporate mergers and acquisitions, we give it one's all to deliver precise and fitting intelligence to our readers.
  • # gates of olympus demo turkce
    KeithNaf
    Posted @ 2024/03/29 19:23
    https://aviatoroyna.bid/# aviator bahis
  • # where buy clomid for sale
    Robertsuela
    Posted @ 2024/04/03 1:25
    http://prednisoneall.com/# prednisone cost canada
  • # how can i get generic clomid without insurance
    Robertsuela
    Posted @ 2024/04/04 14:15
    https://clomidall.com/# can i purchase clomid tablets
  • # how to buy generic clomid without rx
    Robertsuela
    Posted @ 2024/04/04 22:54
    https://clomidall.shop/# rx clomid
  • # generic clomid for sale
    Robertsuela
    Posted @ 2024/04/05 12:46
    https://prednisoneall.shop/# buying prednisone on line
  • # doxycycline monohydrate
    Archiewef
    Posted @ 2024/04/13 16:16
    https://misoprostol.top/# cytotec pills buy online
タイトル
名前
Url
コメント