码迷,mamicode.com
首页 > 编程语言 > 详细

Java中的return this

时间:2018-01-30 12:33:25      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   gpo   调用   实例化   custom   tpc   his   font   ring   

return this就是返回当前对象的引用(就是实际调用这个方法的实例化对象)

示例:
/**
     * 资源url
     */
    public HttpConfig url(String url) {
        urls.set(url);
        //return this就是返回当前对象的引用(就是实际调用这个方法的实例化对象)
        return this;
    }

  调用样例:

HttpConfig  config = HttpConfig.custom();
config = config.url(url);

  

 

Java中的return this

标签:style   gpo   调用   实例化   custom   tpc   his   font   ring   

原文地址:https://www.cnblogs.com/huahua035/p/8383565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!