Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #18212

Re: multiple inheritance

Path csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.glorb.com!news-out.readnews.com!transit4.readnews.com!news-out.news.tds.net!newsreading01.news.tds.net!53ab2750!not-for-mail
From "Arne Vajhøj" <������ høj@1:261/38.remove-fzq-this>
Subject Re: multiple inheritance
Message-ID <50327C38.57137.calajapr@time.synchro.net> (permalink)
X-Comment-To Leif Roar Moldskred
Newsgroups comp.lang.java.programmer
X-FTN-AREA COMP.LANG.JAVA.PROGRAMMER
X-FTN-MSGID 1:261/38 6e01064b
Content-Type text/plain; charset=IBM437
Content-Transfer-Encoding 8bit
X-Gateway time.synchro.net [Synchronet 3.16a-Win32 NewsLink 1.98]
Lines 104
Date Mon, 20 Aug 2012 18:58:27 GMT
NNTP-Posting-Host 69.21.70.65
X-Complaints-To news@tds.net
X-Trace newsreading01.news.tds.net 1345489107 69.21.70.65 (Mon, 20 Aug 2012 13:58:27 CDT)
NNTP-Posting-Date Mon, 20 Aug 2012 13:58:27 CDT
Organization tds.net
Xref csiph.com comp.lang.java.programmer:18212

Show key headers only | View raw


  To: Leif Roar Moldskred
From: "=?UTF-8?B?QXJuZSBWYWpow7hq?=" <=?utf-8?b?qxjuzsbwywpow7hq?=@1:261/38.rem
ove-8mo-this>

  To: Leif Roar Moldskred
From: "=?UTF-8?B?QXJuZSBWYWpow7hq?=" <=?utf-8?b?qxjuzsbwywpow7hq?=@1:261/38.rem
ove-v8v-this>

  To: Leif Roar Moldskred
From: "=?UTF-8?B?QXJuZSBWYWpow7hq?=" <=?utf-8?b?qxjuzsbwywpow7hq?=@1:261/38.rem
ove-7rm-this>

  To: Leif Roar Moldskred
From: "=?UTF-8?B?QXJuZSBWYWpow7hq?=" <=?utf-8?b?qxjuzsbwywpow7hq?=@1:261/38.rem
ove-rj6-this>

  To: Leif Roar Moldskred
From: =?UTF-8?B?QXJuZSBWYWpow7hq?= <arne@vajhoej.dk>

On 8/13/2012 6:55 AM, Leif Roar Moldskred wrote:
> Arne Vajh-,j <arne@vajhoej.dk> wrote:
>> On 8/2/2012 4:10 AM, Roedy Green wrote:
>>>
>>> 1. It has interfaces which gives much of the ability at lighter
>>> weight..
>>
>> Only for a very limited type of types (those with no implementation
>> at all).
>
> At times, I've wished that Java had automatic delegation (composition)
> in addition to inheritance and interface implementation, where the
> compiler automatically adds the public methods and fields from
> delegated objects, except when there's a conflict of names. Something
> like this, maybe:
>
>
> public class ClassAlfa {
>    public void alfaMethod( ) { ... }
>    public void sharedMethod( ) { ... }
>    public void anotherSharedMethod( ) { ... }
> }
>
> public class ClassBeta {
>    public void betaMethod( ) { ... }
>    public void sharedMethod( ) { ... }
>    public void anotherSharedMethod( ) { ... }
> }
>
>
> public class Delegator {
>    private delegate ClassAlfa ALFA;
>    private delegate ClassBeta BETA;
>
>    public void sharedMethod( ) {
>      ALFA.sharedMethod( );
>    }
>
>    public void anotherSharedMethod( ) {
>      ALFA.sharedMethod( );
>      BETA.sharedMethod( );
>    }
> }
>
> public class Example {
>    public static void main( String[] args ) {
>      private Delegator delegator;
>
>      delegator.alfaMethod( );
>      delegator.betaMethod( );
>      delegator.sharedMethod( );
>      delegator.anotherSharedMethod( );
>    }
> }

You IDE should be able to generate the code for you.

But it could save some code in some cases.

Arne

-+- BBBS/Li6 v4.10 Dada-1
 + Origin: Prism bbs (1:261/38)
-+- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24

-+- BBBS/Li6 v4.10 Dada-1
 + Origin: Prism bbs (1:261/38)
-+- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24

-+- BBBS/Li6 v4.10 Dada-1
 + Origin: Prism bbs (1:261/38)
-+- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24

-+- BBBS/Li6 v4.10 Dada-1
 + Origin: Prism bbs (1:261/38)
-+- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24

--- BBBS/Li6 v4.10 Dada-1
 * Origin: Prism bbs (1:261/38)
--- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24

Back to comp.lang.java.programmer | Previous | Next | Find similar | Unroll thread


Thread

Re: multiple inheritance "Arne Vajhøj" <������
høj@1:261/38.remove-fzq-this> - 2012-08-20 18:58 +0000

csiph-web