码迷,mamicode.com
首页 > 其他好文 > 详细

4.63 链式编程

时间:2015-09-24 11:18:07      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

/*
链式编程。
	每次调用完毕方法后,返回的是一个对象。
*/
class Student {
	public void study() {
		System.out.println("Good Good Study,Day Day Up");
	}
}

class StudentDemo {
	public Student getStudent() {
		return new Student();
	}
}

class StudentTest3 {
	public static void main(String[] args) {
		StudentDemo sd = new StudentDemo();
		// Student s = sd.getStudent();
		// s.study();
		sd.getStudent().study();
	}
}


4.63 链式编程

标签:

原文地址:http://my.oschina.net/u/2001589/blog/510474

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