Java连续设置

				new AlertDialog.Builder(AppConfig.getContext())
				.setTitle(R.string.exit)
				.setMessage(R.string.exit_info)
				.setPositiveButton(R.string.confirm, 


        public Builder setTitle(int titleId) {
            P.mTitle = P.mContext.getText(titleId);
            return this;
        }


返回this可以连续设置一些属性。

Java代码里的这个设计思想是为了啥?


// 2012-4-24

当一个类的大部分函数被较为频繁地调用,并且包含连续性地调用

串联函数调用:使用方便

http://blog.csdn.net/m13666368773/article/details/7472209

你可能感兴趣的:(java)