On Wednesday, November 23, 2016 at 8:21:23 PM UTC+5:30, Tong Sun wrote:
 

> I've tried to derive how to achieve a) implementation inheritance, 
>> followed by b) type substitution and c) enabling dynamic dispatch as in 
>> virtual functions in my blog post here: 
>> https://tech.t9i.in/2014/01/22/inheritance-semantics-in-go/
>>
>  
> What's the fundamental difference between it and paraiso.marc's 
> implementation? 
> https://play.golang.org/p/o6Ot4IdJZ1
>
> My view is that GenHello() is just a fancy way of paraiso.marc's getters. 
> True?
>

The real difference is simulating the `this` pointer by defining the 
interface as a set of methods on itself. This allows modeling the interface 
purely on the desired common behaviour, whereas the getter approach 
requires including the getters in the interface out of necessity rather 
than need. It also precludes the possibility of adding more member fields 
in a "derived class" and using them in function overrides.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to