かずきのBlog

C#やJavaやRubyとメモ書き

目次

Blog 利用状況

ニュース

わんくまBlogが不安定になったため、前に書いてたはてなダイアリーにメインを移動します。
かずきのBlog@Hatena
技術的なネタは、こちらにも、はてなへのリンクという形で掲載しますが、雑多ネタははてなダイアリーだけに掲載することが多いと思います。
コメント
プログラマ的自己紹介
お気に入りのツール/IDE
プロフィール
経歴
広告
アクセサリ

書庫

日記カテゴリ

[Ruby][Java][C#]丸投げ委譲

モトネタ:実装を委譲できる言語を作ればいいのかもしれない

Java

委譲できる言語ということで、Javaだとこんなにメンドクサイ!!という例が出てる。
具体的に手順としてはどうなるか?ということをやってみようと思う。

まず、委譲先になるクラスHogeを定義します。
com.wankuma.kazuki.deleg.Hogeという名前で作ります!!
メソッドは2つ。fooとbooです。

package com.wankuma.kazuki.deleg;

public class Hoge {
	public void foo() {
		System.out.println("Hoge#foo");
	}
	public void boo() {
		System.out.println("Hoge#boo");
	}
}

これをフィールドに持って、仕事をHogeに丸投げするPiyoさんを作ります。

package com.wankuma.kazuki.deleg;

public class Piyo {
	private Hoge hoge = new Hoge();
}

委譲先のクラスのインスタンスをフィールドに持ったらおもむろにAlt + Shift + Sを押します。そして、出てきたメニューのGenerate Delegate Methods...を選択します。
image

出てきたダイアログで委譲させたいメソッドを選択する。満足いくまで選択したらOKをくりっく!

image

委譲するメソッドがばっちり記入されてます。さすがEclipse!!!

package com.wankuma.kazuki.deleg;

public class Piyo {
	private Hoge hoge = new Hoge();

	public void boo() {
		hoge.boo();
	}

	public void foo() {
		hoge.foo();
	}
}

 

C#

お次はC#!こちらは…ノリノリでHogeとPiyoを書いてみたが…

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Com.Wankuma.Kazuki.Deleg
{
    class Program
    {
        static void Main(string[] args)
        {
        }
    }

    class Hoge
    {
        public void Foo()
        {
            Console.WriteLine("Hoge#Foo");
        }
        public void Boo()
        {
            Console.WriteLine("Hoge#Boo");
        }
    }

    class Piyo
    {
        private Hoge hoge = new Hoge();

    }
}

リファクタリングメニューを眺めても委譲っぽいのが無い!?ということで泣く泣く全部手書き実装…。するのは悔しい。
ということで書かなかった!!何か楽に書く方法は無いのだろうか。

 

Ruby

次はRuby。Rubyには標準で委譲をするためのライブラリがついてきているという噂。
とりあえずは、委譲のコードを書く直前の段階までサクっと書く。

class Hoge
  def foo
    puts "Hoge#foo"
  end
  
  def boo
    puts "Hoge#boo"
  end
end

class Piyo
  def initialize
    @hoge = Hoge.new
  end
end

委譲を実現するためのライブラリとして、Forwardableというのが使えるらしい。
使い方はrequire 'forwardable'をしてクラスでextend Forwardableをして、def_delegatorsメソッドを呼ぶという流れになるみたい。
早速してみた。

require 'forwardable'

class Hoge
  def foo
    puts "Hoge#foo"
  end
  
  def boo
    puts "Hoge#boo"
  end
end

class Piyo
  extend Forwardable
  def initialize
    @hoge = Hoge.new
  end
  
  def_delegators(:@hoge, :foo, :boo) # fooとbooを@hogeに委譲
end

piyo = Piyo.new
piyo.foo # => Hoge#foo
piyo.boo # => Hoge#boo

全部のコードを書くより楽チンだわぁ。

投稿日時 : 2008年3月23日 0:01

Feedback

# re: [Ruby][Java][C#]丸投げ委譲 2008/03/23 1:06 凪瀬

え゛ッ!
eclipseで作れたのか!
うわー。知らなかった orz

# re: [Ruby][Java][C#]丸投げ委譲 2008/03/23 1:29 かずき

Eclipseは、かなり多機能ですよ!!
Getter/Setterの自動生成のほかにフィールドからのコンストラクタの生成やスーパークラスからのコンストラクタの生成とか…
エラーを自動で直してくれるのもアツイですよね。

最近はequalsやhashCodeも生成してくれるのでかなり楽チンですよ。

# 多重継承をコンポーネント技術で考える 2008/03/23 9:43 myugaruの色々構想中・・・!

多重継承をコンポーネント技術で考える

# 多重継承をコンポーネント技術で考える 2008/03/23 10:00 myugaruの色々構想中・・・!

多重継承をコンポーネント技術で考える

# re: [Ruby][Java][C#]丸投げ委譲 2008/03/23 11:39 凪瀬

getter,setterの自動生成や、オーバーライドとかは使っていたんですが…。
まだまだ使っていない機能が眠っていそうだ…。
リファクタリング機能はかなり便利でお気に入り。

# エルメス 2012/12/14 22:31 http://www.hermespairs.info/category/エルメススカーフ

Our pool should really be fed together with those photopages that you choose to consider really worth becoming the main "Best Brief review Collection".

# エルメス 2012/12/15 15:28 http://www.hermespairs.info/category/エルメス時計

Keep in the excellent work.

# burberry sale 2012/12/16 3:28 http://www.burberryuksale.co/2012-burberry-handbag

Nobody would see yourself to mug you in your basement.

# エルメス 2012/12/16 21:03 http://www.hermespairs.info/category/エルメス時計

If people sound good I'd wholly wear these in the house.

# sacs pliage longchamp 2012/12/17 6:58 http://sacspliagelongchamps.webnode.fr

I am impressed by human eye information during this website. There are lots of good information here.

# burberry femme soldes 2012/12/17 20:12 http://www.sacburberryecharpe.fr/category/burberry

make these people red by using a yellow horse!!

# longchamps 2012/12/17 20:14 http://www.saclongchampachete.info

Our admins have a relatively sharp eye in addition to sharper sensibilities - not to mention our Very best Comments local community enjoys an incredible read. Come play around!

# sac michael kors femme 2012/12/18 5:15 http://sacmichaelkorssoldes.monwebeden.fr/#/photos

Our admins have got a sharp eye and sharper sensibilities - not to mention our Very best Comments city enjoys an excellent read. Come play with us!

# longchamp le pliage 2012/12/18 20:21 http://www.longchampfr.info/category/sac-longchamp

I dont know... there's something tacky around owning Ferrari branded things like this.. unless you furthermore may own a genuine Ferrari.

# Burberry sortie 2012/12/19 13:22 http://sacburberrysoldesfr.webnode.fr

The stars of this pool is the comments as well as pictures really are secondary.

# chaussure femme 2013/01/09 22:32 http://www.robenuk.eu/

Take pleasure in is a working situation for that existence in addition to the increase of whatever we all romance.
chaussure femme http://www.robenuk.eu/

# destockchine 2013/01/13 12:19 http://www.destockchinefr.fr/maillot/maillot/

Please don't discuss about it any health to just one not as fortunate enough compared to what one self.
destockchine http://www.destockchinefr.fr/maillot/maillot/

# destockchine 2013/01/13 12:20 http://www.destockchinefr.fr/echarpe-marque-pas-ch

When discover marital without the need for affection, it will be affection without the need for marital.
destockchine http://www.destockchinefr.fr/echarpe-marque-pas-cher/echarpe-gucci-pas-cher/

# Amazing! This blog looks just like my old one! It's on a totally different subject but it has pretty much the same page layout and design. Great choice of colors! 2018/10/04 16:23 Amazing! This blog looks just like my old one! It

Amazing! This blog looks just like my old one! It's on a totally different subject but it has pretty much the same page layout and design. Great choice of
colors!

# Hmm is anyone else encountering problems with the pictures on this blog loading? I'm trying to find out if its a problem on my end or if it's the blog. Any suggestions would be greatly appreciated. 2018/10/25 4:59 Hmm is anyone else encountering problems with the

Hmm is anyone else encountering problems with the pictures on this blog loading?

I'm trying to find out if its a problem on my end or if it's the blog.

Any suggestions would be greatly appreciated.

# bCDNbaCgXyyDtTz 2018/12/20 7:50 https://www.suba.me/

1VOu9F Outstanding quest there. What happened after? Thanks!

# Because the admin of this web site is working, no question very soon it will be famous, due to its feature contents. 2019/04/08 11:50 Because the admin of this web site is working, no

Because the admin of this web site is working, no question very soon it will
be famous, due to its feature contents.

# Just desire to say your article is as astounding. The clarity in your post is simply great and i could assume you're an expert on this subject. Well with your permission let me to grab your RSS feed to keep updated with forthcoming post. Thanks a million 2019/06/04 20:04 Just desire to say your article is as astounding.

Just desire to say your article is as astounding.
The clarity in your post is simply great and i could assume you're an expert on this subject.
Well with your permission let me to grab your RSS feed to keep updated with forthcoming post.
Thanks a million and please keep up the enjoyable work.

# Spot on with this write-up, I truly believe this site needs much more attention. I'll probably be returning to see more, thanks for the info! 2019/08/18 20:47 Spot on with this write-up, I truly believe this s

Spot on with this write-up, I truly believe this site needs much more attention. I'll probably be returning to see more, thanks
for the info!

# I'd like to find out more? I'd care to find out some additional information. 2021/07/27 6:21 I'd like to find out more? I'd care to find out so

I'd like to find out more? I'd care to find out some additional
information.

# I think this is among the most vital info for me. And i'm glad reading your article. But should remark on some general things, The site style is perfect, the articles is really great : D. Good job, cheers 2021/08/04 8:18 I think this is among the most vital info for me.

I think this is among the most vital info for me. And i'm
glad reading your article. But should remark
on some general things, The site style is perfect, the articles is really great
: D. Good job, cheers

# I'd like to find out more? I'd love to find out more details. 2021/08/30 4:49 I'd like to find out more? I'd love to find out mo

I'd like to find out more? I'd love to find out more
details.

# Excellent goods from you, man. I have understand your stuff previous to and you're just extremely fantastic. I really like what you have acquired here, certainly like what you are stating and the way in which you say it. You make it entertaining and yo 2021/09/01 4:22 Excellent goods from you, man. I have understand y

Excellent goods from you, man. I have understand
your stuff previous to and you're just extremely fantastic.
I really like what you have acquired here, certainly like what you are stating and the way in which
you say it. You make it entertaining and you still care for to keep
it smart. I can't wait to read much more from you.
This is actually a terrific website.

# Excellent goods from you, man. I have understand your stuff previous to and you're just extremely fantastic. I really like what you have acquired here, certainly like what you are stating and the way in which you say it. You make it entertaining and yo 2021/09/01 4:23 Excellent goods from you, man. I have understand y

Excellent goods from you, man. I have understand
your stuff previous to and you're just extremely fantastic.
I really like what you have acquired here, certainly like what you are stating and the way in which
you say it. You make it entertaining and you still care for to keep
it smart. I can't wait to read much more from you.
This is actually a terrific website.

# Excellent goods from you, man. I have understand your stuff previous to and you're just extremely fantastic. I really like what you have acquired here, certainly like what you are stating and the way in which you say it. You make it entertaining and yo 2021/09/01 4:25 Excellent goods from you, man. I have understand y

Excellent goods from you, man. I have understand
your stuff previous to and you're just extremely fantastic.
I really like what you have acquired here, certainly like what you are stating and the way in which
you say it. You make it entertaining and you still care for to keep
it smart. I can't wait to read much more from you.
This is actually a terrific website.

# Excellent goods from you, man. I have understand your stuff previous to and you're just extremely fantastic. I really like what you have acquired here, certainly like what you are stating and the way in which you say it. You make it entertaining and yo 2021/09/01 4:26 Excellent goods from you, man. I have understand y

Excellent goods from you, man. I have understand
your stuff previous to and you're just extremely fantastic.
I really like what you have acquired here, certainly like what you are stating and the way in which
you say it. You make it entertaining and you still care for to keep
it smart. I can't wait to read much more from you.
This is actually a terrific website.

# If you are going for most excellent contents like me, simply pay a quick visit this web site daily since it presents feature contents, thanks 2021/09/02 2:04 If you are going for most excellent contents like

If you are going for most excellent contents like me, simply pay a
quick visit this web site daily since it presents feature contents, thanks

# If you are going for most excellent contents like me, simply pay a quick visit this web site daily since it presents feature contents, thanks 2021/09/02 2:05 If you are going for most excellent contents like

If you are going for most excellent contents like me, simply pay a
quick visit this web site daily since it presents feature contents, thanks

# If you are going for most excellent contents like me, simply pay a quick visit this web site daily since it presents feature contents, thanks 2021/09/02 2:06 If you are going for most excellent contents like

If you are going for most excellent contents like me, simply pay a
quick visit this web site daily since it presents feature contents, thanks

# If you are going for most excellent contents like me, simply pay a quick visit this web site daily since it presents feature contents, thanks 2021/09/02 2:07 If you are going for most excellent contents like

If you are going for most excellent contents like me, simply pay a
quick visit this web site daily since it presents feature contents, thanks

# Hello my friend! I wish to say that this post is amazing, great written and come with almost all important infos. I would like to look extra posts like this . 2021/09/04 9:37 Hello my friend! I wish to say that this post is a

Hello my friend! I wish to say that this post is amazing, great written and come with
almost all important infos. I would like to look extra posts like this .

# What's up, I wish for to subscribe for this blog to take hottest updates, so where can i do it please help out. 2021/10/25 23:26 What's up, I wish for to subscribe for this blog t

What's up, I wish for to subscribe for this blog to take hottest updates, so where can i do it please help out.

#  Tadfil 20 is among the most effective medications for ED relief is Tadfil 20. It was a huge help to me when ED was a concern. If you're seeking a way to get rid of ED and other ED-related issues, look no further. Buy Tadil (20 mg) today at The USA 2022/01/15 8:36 Tadfil 20 is among the most effective medications


Tadfil 20 is among the most effective medications for ED relief is Tadfil 20.
It was a huge help to me when ED was a concern. If you're seeking a way to get rid of ED and other ED-related issues, look no further.





Buy Tadil (20 mg) today at The USA Meds. Say goodbye to ED.
USA Meds has been the most popular seller of Tadfil-20mg the US.

# I'm not sure where you're getting your info, but great topic. I needs to spend some time learning much more or understanding more. Thanks for wonderful info I was looking for this info for my mission. 2023/04/12 7:36 I'm not sure where you're getting your info, but g

I'm not sure where you're getting your info, but great topic.

I needs to spend some time learning much more or understanding
more. Thanks for wonderful info I was looking for this info for my mission.

タイトル
名前
Url
コメント