Flicker1985's Blog

Everything should be made as simple as possible, but not simpler.
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

My undstanding of Duck Typing

    The definition of Duck Typing in wiki is ""When I see a bird that walks like a duck and swims like a duck and quacks like a duck, I call that bird a duck."    My understanding is behavior over type, now.  That is eazy to undstandin for the programmer who is using dynamic type programming such as ruby, python etc. But, maybe is not so eazy to understanding to someone like me who is never use dynamic type programming lanuage before.   When I started to learn ruby, i confused there is no interface syntax in ruby. As you know,  ruby is a OO programming language.  How do i do interface orintend programming in ruby.

     At first, we should know what is interface? Interface is a contract. If a class implments a specfic interface, we think the class statisfied the contract. Then we should know why do we need interface. Interface efficient decoupling a behavior, which dependence a specific implementation. After I knew the 2 points, i completely undstand. I unstand why there is no interface in ruby. Please take a look the below code.

 

ruby code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
class Person
 
    def walk       
         puts 'Person is walking'   
    end
     
    def swim     
         puts 'Person is swimming'    
    end
 
    def quack
         puts "Person can't quack"
    end
end
 
class Duck
    def walk
        puts 'Duck is walking'
    end
     
    def swim
        puts 'Duck is swimming'   
    end
     
    def quack
        puts "Duck is quacking"
    end
end
 
def detect_duck_behavior(duck)
   duck.walk()
   duck.swim()
   duck.quack()
end
 
detect_duck_behavior(Person.new)
detect_duck_behaviro(Duck.new)

C# code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
   interface IDuckBehavior
   {
       void Walk();
       void Swim();
       void Quack();
   }
 
   class Person: IDuckBehavior
   {
       public void Walk()
       {
           Console.WriteLine("Person is walking");
       }
 
       public void Swim()
       {
           Console.WriteLine("Person is swimming");
       }
 
       public void Quack()
       {
           Console.WriteLine("Person can't quack");
       }
   }
 
   class Duck : IDuckBehavior
   {
       public void Walk()
       {
           Console.WriteLine("Duck is walking");
       }
 
       public void Swim()
       {
           Console.WriteLine("Duck is swimming");
       }
 
       public void Quack()
       {
          Console.WriteLine("Duck is quacking");
       }
   }
 
class Program
   {
       static void Main(string[] args)
       {
           DetectDuckBehavior(new Person());
           DetectDuckBehavior(new Duck());
       }
 
       static void DetectDuckBehavior(IDuckBehavior duckBehavior)
       {
           duckBehavior.Walk();
           duckBehavior.Swim();
           duckBehavior.Quack();
       }
   }

Comparing the 2 code snippet, you will find ruby can do as same as c#, althought there is no interface in ruby. So, i think the dynamic type OO programming language is behavior over type. We care what behavior it have, not its type.

posted on   Fei He  阅读(298)  评论(0编辑  收藏  举报

编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示