跟黄哥学python序列文章之python方法链(method chaining)

跟黄哥学python序列文章之python方法链(method chaining)

写这篇文章来由,有朋友说下面这样的代码看不懂。

choice = raw_input("please input:\n").strip()[0].lower()
很多对于有经验的程序员来说,这些都不是事,
但对于初学者来说,看到这样的语法头有点大。

这个其实是面向对象中方法链的概念。

请看维基百科上Method chaining的定义

    Method chaining, also known as named parameter idiom,   
    is a common syntax for invoking   multiple method calls 
    in object-oriented programming languages.
    Each method returns an   object, allowing the calls 
    to be chained together in a single statement without requiring   
    variables to store the intermediate results.
    Local variable declarations are syntactic   
    sugar because of the difficulty humans have with deeply nested method calls.
    A method chain is also known as a train wreck due to the increase 
    in the number of methods that come one after another in the same 
    line that occurs as more methods are chained together
    even though line breaks are often added between methods.

具体在python中,请看黄哥的分析:

有的python初学者对python方法连续调用不是很清楚,像雾里看花一样。
python一切都是对象,对象调用它的方法,如果带返回值,放回值也是对象,  
这个返回值也有方法,当然就可以用点号调用它的方法,   
如此下去,就是python方法链调用也。

如何设计方法链python代码

# coding:utf-8
"""
如何通过学习python学会编程
https://github.com/pythonpeixun/article/blob/master/python/how_to_learn_python.md
黄哥python远程视频培训班
https://github.com/pythonpeixun/article/blob/master/index.md
黄哥python培训试看视频播放地址
https://github.com/pythonpeixun/article/blob/master/python_shiping.md
黄哥python培训 咨询qq:1465376564
"""


class Person(object):
    """方法链小sample"""

    def name(self, value):
        self.name = value
        return self # 返回实例对象自己才能再调用实例对象的方法。

    def work(self, value):
        self.working = value
        return self

    def introduce(self):
        print "你好, 我的名字:", self.name, ",我的工作:", self.working, ",教初学者学会编程!"

person = Person()
person.name("黄哥").work("黄哥python培训").introduce()

php方法链代码

    <?php
    /*
    黄哥php培训 咨询qq:1465376564
    https://github.com/pythonpeixun/article/blob/master/php_education.md
    */


    class Person{
        public $name;
        public $working;

        public function setName($value){
            $this->name = $value;
            return $this;
        }

        public function work($value){
            $this->working = $value;
            return $this;
        }

        public function introduce(){
            echo "你好, 我的名字:".$this->name.",我的工作:".$this->working.",教初学者学会编程!\n";
        }
    }

    $person = new Person();
    $person->setName("黄哥")->work("黄哥php培训")->introduce();

点击黄哥python培训试看视频播放地址

黄哥python远程视频培训班

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,923评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 173,269评论 25 708
  • 转至元数据结尾创建: 董潇伟,最新修改于: 十二月 23, 2016 转至元数据起始第一章:isa和Class一....
    40c0490e5268阅读 1,768评论 0 9
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,229评论 4 61
  • 雷咖阅读 150评论 0 0