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

Java函数的联级调用

时间:2017-10-26 19:54:26      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:count   函数   返回   示例   调用   级联   对象   concat   abc   

String类的方法可以连续调用: String str="abc"; String result=str.trim().toUpperCase().concat("defg");

请阅读JDK中String类上述方法的源码,模仿其编程方式,编写一个MyCounter类,它的方法也支持上述的“级联”调用特性,

其调用示例为:

MyCounter counter1=new MyCounter(1);

MyCounter counter2=counter1.increase(100).decrease(2).increase(3);

….

程序的源码:

public class Mycounter {
private int a;
	public Mycounter()
	{
		
	}
	public Mycounter(int a)
	{
		this.a=a;
	}
	public Mycounter increase(int x)
	{
		this.a=this.a+x;
		return this;
	}
	public Mycounter decrease(int x)
	{
		this.a=this.a-x;
		return this;
	}
	public static void main(String[] args) {
		Mycounter counter1=new Mycounter(1);
		Mycounter counter2=counter1.increase(100).decrease(45);
		System.out.println(counter2.a);

	}

}

  程序的结果截图为:

  1. 技术分享

 

注:在该程序中,如果想实现类似string类型那样的联级调用,每个函数的类型应该是该程序中的本类,返回该类的对象用this 指针。

 

Java函数的联级调用

标签:count   函数   返回   示例   调用   级联   对象   concat   abc   

原文地址:http://www.cnblogs.com/ljysy/p/7738387.html

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