Fluent Interface(流式接口)

我最初接触这个概念是读自<<模式-工程化实现及扩展>>,另外有Martin fowler大师 所写http://martinfowler.com/bliki/FluentInterface.html

Fluent Interface实例

Java 类Country

  1. package com.jue.fluentinterface;
  2. public class Country {
  3. private String name;
  4. private int code;
  5. private boolean isDevelopedCountry;
  6. private int area;
  7. Country addName(String name) {
  8. this.name = name;
  9. return this;
  10. }
  11. Country addCountyCode(int code) {
  12. this.code = code;
  13. return this;
  14. }
  15. Country setDeveloped(boolean isdeveloped) {
  16. this.isDevelopedCountry = isdeveloped;
  17. return this;
  18. }
  19. Country setAread(int area) {
  20. this.area = area;
  21. return this;
  22. }
  23. }

调用类

  1. /**
  2. * @param args
  3. */
  4. public static void main(String[] args) {
  5. // TODO Auto-generated method stub
  6. Country china = new Country();
  7. china.addName("The People's Republic of China")
  8. .addCountyCode(1001)
  9. .setDeveloped(false)
  10. .setAread(960);
  11. }

主要特征:

Country 的方法返回本身country,使调用者有了继续调用country方法的能力.

优势

1.有时候我们需要根据传入的参数数目不同定义不同的构造器。使用 FluentInterface就可以随意传递想要的数据,并保持他们的连贯。

java中的应用

StringBuffer append方法
上一篇:KEIL C编译器常见警告与错误信息的解决办法


下一篇:vscode下调试caffe源码