Aliases allow to by-pass interface operations?

Today while going through an article, I came to a point where the author mentioned the disadvantages of aliasing and one of them is

"aliases allow to by-pass interface operations"

link to the article

http://www.cs.ru.nl/~erikpoll/ss/Aliasing.pdf

But I couldnt find explanation for it. Is this true? How?

[335 byte] By [nagarjunaa] at [2007-11-27 8:57:51]
# 1
> "aliases allow to by-pass interface operations" > > ...> > But I couldnt find explanation for it.you mean apart from pages 9 to 13 inclusive?> Is this true?Only if you indulge in the anti-patterns embodied in the
ejpa at 2007-7-12 21:22:58 > top of Java-index,Java Essentials,Java Programming...
# 2
I am talking about page No. 6I didnt find any example explaining this.Can you explain how interface operations can be bypassed?
nagarjunaa at 2007-7-12 21:22:58 > top of Java-index,Java Essentials,Java Programming...
# 3
> I am talking about page No. 6> > I didnt find any example explaining this.What he suggested was "read page 9 to 13"
aniseeda at 2007-7-12 21:22:58 > top of Java-index,Java Essentials,Java Programming...
# 4

> I am talking about page No. 6

>

> I didnt find any example explaining this.

>

> Can you explain how interface operations can be

> bypassed?

Look, mate, it's your reference, how about you read it yourself instead of expecting other people to do it for you?

And try not to stop at page 6.

ejpa at 2007-7-12 21:22:58 > top of Java-index,Java Essentials,Java Programming...
# 5

I just started going thru these concepts of aliasing and immutability.

And I am unable to understand the explanation given in the link. May be my knowledge is not sufficient to understand(thats y I am seeking help).

I didnt understand rep notation.

public class BankTransfer{

private BankAccount from,to;

private @rep int[] amount;

private @rep char[] description;

...

}

Thatsy I am trying to find another simple example and so posted this thread.

Can anyone else help me plz?

nagarjunaa at 2007-7-12 21:22:58 > top of Java-index,Java Essentials,Java Programming...
# 6

> I didnt understand rep notation.

which is explained on page 12.

> Can anyone else help me plz?

It's only a slideshow, you're not going to get much more out of it. I would contact the author and ask if there is a proper paper behind it. But only if you're going to read it.

ejpa at 2007-7-12 21:22:58 > top of Java-index,Java Essentials,Java Programming...