SPRING框架中ModelAndView、Model、ModelMap区别及详细分析
转载内容:http://www.cnblogs.com/google4y/p/3421017.html
1. Model
Model 是一个接口, 其实现类为ExtendedModelMap,继承了ModelMap类。
public class ExtendedModelMap extends ModelMap implements Model
- 1
2.ModelMap
ModelMap的声明格式:
public class ModelMap extends LinkedHashMap<String, Object>
- 1
ModelMap对象主要用于传递控制方法处理数据到结果页面,也就是说我们把结果页面上需要的数据放到ModelMap对象中即可,他的作用类似于request对象的setAttribute方法的作用:用来在一个请求过程中传递处理的数据。ModelMap或者Model通过addAttribute方法向页面传递参数,其中addAttribute方法重载有多重方式:
public ModelMap addAttribute(String attributeName, Object attributeValue){...}
public ModelMap addAttribute(Object attributeValue){...}
public ModelMap addAllAttributes(Collection<?> attributeValues) {...}
public ModelMap addAllAttributes(Map<String, ?> attributes){...}
在页面上可以通过el表达式语言$attributeName等系列数据展示标签获取并展示modelmap中的数据。
modelmap本身不能设置页面跳转的url地址别名或者物理跳转地址,那么我们可以通过控制器方法的字符串返回值来设置跳转url地址别名或者物理跳转地址。
3.ModelAndView
ModelAndView对象有两个作用:
(1). 设置转向地址,这也是ModelAndView和ModelMap的主要区别.设置方式如下所示:
ModelAndView view = new ModelAndView("path:ok");
或者通过setViewName方式:
public void setViewName(String viewName){...}
(2). 将控制器方法中处理的结果数据传递到结果页面,也就是把在结果页面上需要的数据放到ModelAndView对象中即可,其作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:
public ModelAndView addObject(String attributeName, Object attributeValue){...}
public ModelAndView addObject(Object attributeValue){...}
在页面上也是可以通过el表达式语言$attributeName等系列数据展示标签获取并展示ModelAndView中的数据。
4. 使用方式如下:
(1) ModelMap
ModelMap的实例是spirng mvc框架自动创建并作为控制器方法参数传入,用户无需自己创建。
public String xxxxmethod(String someparam,ModelMap model)
{
//省略方法处理逻辑若干
//将数据放置到ModelMap对象model中,第二个参数可以是任何java类型
model.addAttribute("key",someparam);
......
//返回跳转地址
return "path:handleok";
}
(2) ModelAndView
ModelAndView的实例是由用户手动创建的,这也是和ModelMap的一个区别。
public ModelAndView xxxxmethod(String someparam)
{
//省略方法处理逻辑若干
//构建ModelAndView实例,并设置跳转地址
ModelAndView view = new ModelAndView("path:handleok");
//将数据放置到ModelAndView对象view中,第二个参数可以是任何java类型
view.addObject("key",someparam);
......
//返回ModelAndView对象view
return view;
}
以上内容参考这里
注意:如果方法声明了注解@ResponseBody ,则会直接将返回值输出到页面。
首先介绍ModelMap[Model]和ModelAndView的作用
Model 是一个接口, 其实现类为ExtendedModelMap,继承了ModelMap类。
ModelMap
ModelMap对象主要用于传递控制方法处理数据到结果页面,也就是说我们把结果页面上需要的数据放到ModelMap对象中即可,他的作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:
addAttribute(String key,Object value);
在页面上可以通过el变量方式$key或者bboss的一系列数据展示标签获取并展示modelmap中的数据。
modelmap本身不能设置页面跳转的url地址别名或者物理跳转地址,那么我们可以通过控制器方法的返回值来设置跳转url地址别名或者物理跳转地址。
ModelAndView
ModelAndView对象有两个作用:
作用一 设置转向地址,如下所示(这也是ModelAndView和ModelMap的主要区别)
ModelAndView view = new ModelAndView("path:ok");
作用二 用于传递控制方法处理结果数据到结果页面,也就是说我们把需要在结果页面上需要的数据放到ModelAndView对象中即可,他的作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:
addObject(String key,Object value);
在页面上可以通过el变量方式$key或者bboss的一系列数据展示标签获取并展示ModelAndView中的数据。
作用介绍完了后,接下来介绍使用方法
ModelMap
ModelMap的实例是由bboss mvc框架自动创建并作为控制器方法参数传入,用户无需自己创建。
public String xxxxmethod(String someparam,ModelMap model)
{
//省略方法处理逻辑若干
//将数据放置到ModelMap对象model中,第二个参数可以是任何java类型
model.addAttribute("key",someparam);
......
//返回跳转地址
return "path:handleok";
}
ModelAndView
(一)使用ModelAndView类用来存储处理完后的结果数据,以及显示该数据的视图。从名字上看ModelAndView中的Model代表模型,View代表视图,这个名字就很好地解释了该类的作用。业务处理器调用模型层处理完用户请求后,把结果数据存储在该类的model属性中,把要返回的视图信息存储在该类的view属性中,然后让该ModelAndView返回该Spring MVC框架。框架通过调用配置文件中定义的视图解析器,对该对象进行解析,最后把结果数据显示在指定的页面上。
具体作用:
1、返回指定页面
ModelAndView构造方法可以指定返回的页面名称,
也可以通过setViewName()方法跳转到指定的页面 ,
2、返回所需数值
使用addObject()设置需要返回的值,addObject()有几个不同参数的方法,可以默认和指定返回对象的名字。
1、【其源码】:熟悉一个类的用法,最好从其源码入手。
- public class ModelAndView {
- /** View instance or view name String */
- private Object view;//<span style="color: rgb(0, 130, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; line-height: 18px;">该属性用来存储返回的视图信息</span>
- /** Model Map */
- private ModelMap model;//<span style="color: rgb(0, 130, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; line-height: 18px;">该属性用来存储处理后的结果数据</span>
- /**
- * Indicates whether or not this instance has been cleared with a call to {@link #clear()}.
- */
- private boolean cleared = false;
- /**
- * Default constructor for bean-style usage: populating bean
- * properties instead of passing in constructor arguments.
- * @see #setView(View)
- * @see #setViewName(String)
- */
- public ModelAndView() {
- }
- /**
- * Convenient constructor when there is no model data to expose.
- * Can also be used in conjunction with <code>addObject</code>.
- * @param viewName name of the View to render, to be resolved
- * by the DispatcherServlet's ViewResolver
- * @see #addObject
- */
- public ModelAndView(String viewName) {
- this.view = viewName;
- }
- /**
- * Convenient constructor when there is no model data to expose.
- * Can also be used in conjunction with <code>addObject</code>.
- * @param view View object to render
- * @see #addObject
- */
- public ModelAndView(View view) {
- this.view = view;
- }
- /**
- * Creates new ModelAndView given a view name and a model.
- * @param viewName name of the View to render, to be resolved
- * by the DispatcherServlet's ViewResolver
- * @param model Map of model names (Strings) to model objects
- * (Objects). Model entries may not be <code>null</code>, but the
- * model Map may be <code>null</code> if there is no model data.
- */
- public ModelAndView(String viewName, Map<String, ?> model) {
- this.view = viewName;
- if (model != null) {
- getModelMap().addAllAttributes(model);
- }
- }
- /**
- * Creates new ModelAndView given a View object and a model.
- * <emphasis>Note: the supplied model data is copied into the internal
- * storage of this class. You should not consider to modify the supplied
- * Map after supplying it to this class</emphasis>
- * @param view View object to render
- * @param model Map of model names (Strings) to model objects
- * (Objects). Model entries may not be <code>null</code>, but the
- * model Map may be <code>null</code> if there is no model data.
- */
- public ModelAndView(View view, Map<String, ?> model) {
- this.view = view;
- if (model != null) {
- getModelMap().addAllAttributes(model);
- }
- }
- /**
- * Convenient constructor to take a single model object.
- * @param viewName name of the View to render, to be resolved
- * by the DispatcherServlet's ViewResolver
- * @param modelName name of the single entry in the model
- * @param modelObject the single model object
- */
- public ModelAndView(String viewName, String modelName, Object modelObject) {
- this.view = viewName;
- addObject(modelName, modelObject);
- }
- /**
- * Convenient constructor to take a single model object.
- * @param view View object to render
- * @param modelName name of the single entry in the model
- * @param modelObject the single model object
- */
- public ModelAndView(View view, String modelName, Object modelObject) {
- this.view = view;
- addObject(modelName, modelObject);
- }
- /**
- * Set a view name for this ModelAndView, to be resolved by the
- * DispatcherServlet via a ViewResolver. Will override any
- * pre-existing view name or View.
- */
- public void setViewName(String viewName) {
- this.view = viewName;
- }
- /**
- * Return the view name to be resolved by the DispatcherServlet
- * via a ViewResolver, or <code>null</code> if we are using a View object.
- */
- public String getViewName() {
- return (this.view instanceof String ? (String) this.view : null);
- }
- /**
- * Set a View object for this ModelAndView. Will override any
- * pre-existing view name or View.
- */
- public void setView(View view) {
- this.view = view;
- }
- /**
- * Return the View object, or <code>null</code> if we are using a view name
- * to be resolved by the DispatcherServlet via a ViewResolver.
- */
- public View getView() {
- return (this.view instanceof View ? (View) this.view : null);
- }
- /**
- * Indicate whether or not this <code>ModelAndView</code> has a view, either
- * as a view name or as a direct {@link View} instance.
- */
- public boolean hasView() {
- return (this.view != null);
- }
- /**
- * Return whether we use a view reference, i.e. <code>true</code>
- * if the view has been specified via a name to be resolved by the
- * DispatcherServlet via a ViewResolver.
- */
- public boolean isReference() {
- return (this.view instanceof String);
- }
- /**
- * Return the model map. May return <code>null</code>.
- * Called by DispatcherServlet for evaluation of the model.
- */
- protected Map<String, Object> getModelInternal() {
- return this.model;
- }
- /**
- * Return the underlying <code>ModelMap</code> instance (never <code>null</code>).
- */
- public ModelMap getModelMap() {
- if (this.model == null) {
- this.model = new ModelMap();
- }
- return this.model;
- }
- /**
- * Return the model map. Never returns <code>null</code>.
- * To be called by application code for modifying the model.
- */
- public Map<String, Object> getModel() {
- return getModelMap();
- }
- /**
- * Add an attribute to the model.
- * @param attributeName name of the object to add to the model
- * @param attributeValue object to add to the model (never <code>null</code>)
- * @see ModelMap#addAttribute(String, Object)
- * @see #getModelMap()
- */
- public ModelAndView addObject(String attributeName, Object attributeValue) {
- getModelMap().addAttribute(attributeName, attributeValue);
- return this;
- }
- /**
- * Add an attribute to the model using parameter name generation.
- * @param attributeValue the object to add to the model (never <code>null</code>)
- * @see ModelMap#addAttribute(Object)
- * @see #getModelMap()
- */
- public ModelAndView addObject(Object attributeValue) {
- getModelMap().addAttribute(attributeValue);
- return this;
- }
- /**
- * Add all attributes contained in the provided Map to the model.
- * @param modelMap a Map of attributeName -> attributeValue pairs
- * @see ModelMap#addAllAttributes(Map)
- * @see #getModelMap()
- */
- public ModelAndView addAllObjects(Map<String, ?> modelMap) {
- getModelMap().addAllAttributes(modelMap);
- return this;
- }
- /**
- * Clear the state of this ModelAndView object.
- * The object will be empty afterwards.
- * <p>Can be used to suppress rendering of a given ModelAndView object
- * in the <code>postHandle</code> method of a HandlerInterceptor.
- * @see #isEmpty()
- * @see HandlerInterceptor#postHandle
- */
- public void clear() {
- this.view = null;
- this.model = null;
- this.cleared = true;
- }
- /**
- * Return whether this ModelAndView object is empty,
- * i.e. whether it does not hold any view and does not contain a model.
- */
- public boolean isEmpty() {
- return (this.view == null && CollectionUtils.isEmpty(this.model));
- }
- /**
- * Return whether this ModelAndView object is empty as a result of a call to {@link #clear}
- * i.e. whether it does not hold any view and does not contain a model.
- * <p>Returns <code>false</code> if any additional state was added to the instance
- * <strong>after</strong> the call to {@link #clear}.
- * @see #clear()
- */
- public boolean wasCleared() {
- return (this.cleared && isEmpty());
- }
- /**
- * Return diagnostic information about this model and view.
- */
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder("ModelAndView: ");
- if (isReference()) {
- sb.append("reference to view with name '").append(this.view).append("'");
- }
- else {
- sb.append("materialized View is [").append(this.view).append(']');
- }
- sb.append("; model is ").append(this.model);
- return sb.toString();
- }
在源码中有7个构造函数,如何用?是一个重点。构造ModelAndView对象当控制器处理完请求时,通常会将包含视图名称或视图对象以及一些模型属性的ModelAndView对象返回到DispatcherServlet。因此,经常需要在控制器中构造ModelAndView对象。ModelAndView类提供了几个重载的构造器和一些方便的方法,让你可以根据自己的喜好来构造ModelAndView对象。这些构造器和方法以类似的方式支持视图名称和视图对象。通过ModelAndView构造方法可以指定返回的页面名称,也可以通过setViewName()方法跳转到指定的页面 , 使用addObject()设置需要返回的值,addObject()有几个不同参数的方法,可以默认和指定返回对象的名字。
(1)当你只有一个模型属性要返回时,可以在构造器中指定该属性来构造ModelAndView对象:
- package com.apress.springrecipes.court.web;
- ...
- import org.springframework.web.servlet.ModelAndView;
- import org.springframework.web.servlet.mvc.AbstractController;
- public class WelcomeController extends AbstractController{
- public ModelAndView handleRequestInternal(HttpServletRequest request,
- HttpServletResponse response)throws Exception{
- Date today = new Date();
- return new ModelAndView("welcome","today",today); //其中,welcome为跳转的页面,第一个today为key,第二个today为value
- }
- }
(2)如果有不止一个属性要返回,可以先将它们传递到一个Map中再来构造ModelAndView对象。
- package com.apress.springrecipes.court.web;
- ...
- import org.springframework.web.servlet.ModelAndView;
- import org. springframework.web.servlet.mvc.AbstractController;
- public class ReservationQueryController extends AbstractController{
- ...
- public ModelAndView handleRequestInternal(HttpServletRequest request,
- HttpServletResponse response)throws Exception{
- ...
- Map<String,Object> model = new HashMap<String,Object>();
- if(courtName != null){
- model.put("courtName",courtName);
- model.put("reservations",reservationService.query(courtName));
- }
- return new ModelAndView("reservationQuery",model); //"reservationQuery"为返回页面,model是用来承接姚返回到前端页面的值得集合map
- }
- }
Spring也提供了ModelMap,这是java.util.Map实现,可以根据模型属性的具体类型自动生成模型属性的名称。
- package com.apress.springrecipes.court.web;
- ...
- import org.springframework.ui.ModelMap;
- import org.springframework.web.servlet.ModelAndView;
- import org.springframework.web.servlet.mvc.AbstractController;
- public class ReservationQueryController extends AbstractController{
- ...
- public ModelAndView handleRequestInternal(HttpServletRequest request,
- HttpServletResponse response)throws Exception{
- ...
- ModelMap model = new ModelMap();
- if(courtName != null){
- model.addAttribute("courtName",courtName);
- model.addAttribute("reservations",reservationService.query(courtName));
- }
- return new ModelAndView("reservationQuery",model);
- }
- }
这里,我又想多说一句:ModelMap对象主要用于传递控制方法处理数据到结果页面,也就是说我们把结果页面上需要的数据放到ModelMap对象中即可,他的作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:
addAttribute(String key,Object value); //modelMap的方法
在页面上可以通过el变量方式${key}或者bboss的一系列数据展示标签获取并展示modelmap中的数据。
modelmap本身不能设置页面跳转的url地址别名或者物理跳转地址,那么我们可以通过控制器方法的返回值来设置跳转url地址别名或者物理跳转地址。 比如:
- public String xxxxmethod(String someparam,ModelMap model)
- {
- //省略方法处理逻辑若干
- //将数据放置到ModelMap对象model中,第二个参数可以是任何java类型
- model.addAttribute("key",someparam);
- ......
- //返回跳转地址
- return "path:handleok";
- }
在这些构造函数中最简单的ModelAndView是持有View的名称返回,之后View名称被view resolver,也就是实作org.springframework.web.servlet.View接口的实例解析,例如 InternalResourceView或JstlView等等:ModelAndView(String viewName);如果您要返回Model对象,则可以使用Map来收集这些Model对象,然后设定给ModelAndView,使用下面这个版本的 ModelAndView:ModelAndView(String viewName, Map model),Map对象中设定好key与value值,之后可以在视图中取出,如果您只是要返回一个Model对象,则可以使用下面这个 ModelAndView版本:ModelAndView(String viewName, String modelName, Object modelObject),其中modelName,您可以在视图中取出Model并显示。
ModelAndView类别提供实作View接口的对象来作View的参数:
ModelAndView(View view) //只返回页面,不传递参数
ModelAndView(View view, Map model) //返回页面和传递很多前端需要的对象,放进model中
ModelAndView(View view, String modelName, Object modelObject ) // 返回页面,只需传递一个参数到前端,对象名为modelName,其对应的值为modelObject
2【方法使用】:给ModelAndView实例设置view的方法有两个:setViewName(String viewName) 和 setView(View view)。前者是使用viewName,后者是使用预先构造好的View对象。其中前者比较常用。事实上View是一个接口,而不是一个可以构造的具体类,我们只能通过其他途径来获取View的实例。对于viewName,它既可以是jsp的名字,也可以是tiles定义的名字,取决于使用的ViewNameResolver如何理解这个view name。如何获取View的实例以后再研究。
而对应如何给ModelAndView实例设置model则比较复杂。有三个方法可以使用:
addObject(Object modelObject);
addObject(String modelName, Object modelObject);
addAllObjects(Map modelMap);
3【作用简介】:
ModelAndView对象有两个作用:
作用一 设置转向地址,如下所示(这也是ModelAndView和ModelMap的主要区别)
ModelAndView view = new ModelAndView("path:ok");
作用二 用于传递控制方法处理结果数据到结果页面,也就是说我们把需要在结果页面上需要的数据放到ModelAndView对象中即可,他的作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:
addObject(String key,Object value);
ModelAndView的实例是由用户手动创建的,这也是和ModelMap的一个区别。
public ModelAndView xxxxmethod(String someparam)
{
//省略方法处理逻辑若干
//构建ModelAndView实例,并设置跳转地址
ModelAndView view = new ModelAndView("path:handleok");
//将数据放置到ModelAndView对象view中,第二个参数可以是任何java类型
view.addObject("key",someparam);
......
//返回ModelAndView对象view
return view;
}
到此bboss mvc中ModelMap和ModelAndView两个对象的作用和使用方法介绍完毕
如下为我自己写的测试代码
//getBusinessIdListByIp方法中同时使用了Model(其实为ModelMap),和ModelAndView ,但是ModelAndView 需要返回,而Model不需要
@RequestMapping(value = "/demo",method = RequestMethod.GET)
public ModelAndView getBusinessIdListByIp(@RequestParam("ip") String ip,@RequestParam("phoneId") String phoneId,Model model){
ModelAndView mav = new ModelAndView();
model.addAttribute("ip", ip);
model.addAttribute("phoneId", phoneId);
mav.addObject(model);
mav.setViewName("user/mav");
return mav;
} @RequestMapping(value = "/demo2",method = RequestMethod.GET)
public ModelAndView getBusinessIdListByIp(){
return new ModelAndView("view/list")
SPRING框架中ModelAndView、Model、ModelMap区别及详细分析的更多相关文章
- Spring框架中ModelAndView、Model、ModelMap区别
原文地址:http://www.cnblogs.com/google4y/p/3421017.html SPRING框架中ModelAndView.Model.ModelMap区别 注意:如果方法 ...
- Spring框架中ModelAndView、Model、ModelMap区别 (转)
原文地址:http://www.cnblogs.com/google4y/p/3421017.html SPRING框架中ModelAndView.Model.ModelMap区别 注意:如果方法 ...
- Spring 框架中 ModelAndView、Model、ModelMap 的区别
Model Model 是一个接口, 其实现类为ExtendedModelMap,继承了ModelMap类. public class ExtendedModelMap extends ModelMa ...
- Spring框架中ModelAndView、Model、ModelMap的区别
转自:http://blog.csdn.net/liujiakunit/article/details/51733211 1. Model Model 是一个接口, 其实现类为ExtendedMode ...
- 细说shiro之五:在spring框架中集成shiro
官网:https://shiro.apache.org/ 1. 下载在Maven项目中的依赖配置如下: <!-- shiro配置 --> <dependency> <gr ...
- 【Spring】8、Spring框架中的单例Beans是线程安全的么
看到这样一个问题:spring框架中的单例Beans是线程安全的么? Spring框架并没有对单例bean进行任何多线程的封装处理.关于单例bean的线程安全和并发问题需要开发者自行去搞定.但实际上, ...
- Spring5源码解析-Spring框架中的单例和原型bean
Spring5源码解析-Spring框架中的单例和原型bean 最近一直有问我单例和原型bean的一些原理性问题,这里就开一篇来说说的 通过Spring中的依赖注入极大方便了我们的开发.在xml通过& ...
- Spring 框架中Http请求处理流程
Spring Web http request请求流程: 首先介绍这边你需要知道的继承体系,DispacherServlet继承自FrameworkServlet,FrameworkServlet继承 ...
- 3.Spring框架中的标签与配置文件分离
1.Spring框架中标签的配置 1. id属性和name属性的区别 * id -- Bean起个名字,在约束中采用ID的约束,唯一 * 取值要求:必须以字母开始,可以使用字母.数字.连字符.下划线. ...
随机推荐
- Linux_(3)Shell编程(上)
一.shell 简介Shell 是一个用 C 语言编写的程序,它是用户使用 Linux 的桥梁.Shell 既是一种命令语言,又是一种程序设计语言.Shell 是指一种应用程序,这个应用程序提供了一个 ...
- Activity和Intent
- 探索未知种族之osg类生物---呼吸分解之advance
回顾 我们用了两节的内容才堪堪讲解完ViewerBase::frame()函数中调用的realize()---Viewer:: realize()函数.我们简单的总结就是Viewer:: realiz ...
- Luogu 1341 无序字母对 - 欧拉路径
Solution 找一条字典序最小的欧拉路径. 用 $multiset$ 存储领接表. 欧拉路径模板传送门 Code #include<cstdio> #include<cstrin ...
- 从1~N中任选出三个数,最小公倍数最大
已知一个正整数N,问从1~N中任选出三个数,它们的最小公倍数最大可以为多少. 当n为奇数:n.n-1.n-2这是三个最大数,并且它们两两互质.因为连续的奇.偶.奇,互质.连续的两个数互质是因为它们的公 ...
- mysqli_query数据库有数据,查不出来
MySQLDB.class.php <?php /** * 数据库操作工具类 */ class MySQLDB { // 定义相关属性 private $host;// 主机地址 private ...
- 最佳运动类APP-Keep设计与欣赏
运动类APP是大家手机中必备的一款软件.如果说谁手机里没有任何涉及运动类APP,那只能说真的与时代脱轨了.近些年随着物质生活条件的改善,人们开始越来越重视自己的身体,所以也越来越多的人会进行身体锻炼. ...
- [转载]How To Install Nginx And PHP-FPM On CentOS 6 Via Yum
http://www.lifelinux.com/how-to-install-nginx-and-php-fpm-on-centos-6-via-yum/ http://blog.csdn.net/ ...
- [C#]“正在终止线程”的问题
在C#中启用线程后,如果试图使用Abort方法来终止线程,那么必定会抛出“正在终止线程”的异常,一开始我也想过如何来避免这种异常出现,花了不少气力,但最后发现全是徒劳. 原因是一个正在运行的线程被终止 ...
- python中从内部循环直接跳出多层循环
学习循环的时候碰到一道题,需要从内部循环中直接跳出所有循环,想了很久终于想到一种好办法(小白认知) 题目为:使用while循环输出100-50,从大到小,到50时,再循环输出0-50,从小到大. ex ...