转载内容: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、【其源码】:熟悉一个类的用法,最好从其源码入手。

  1. public class ModelAndView {
  2. /** View instance or view name String */
  3. private Object view;//<span style="color: rgb(0, 130, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; line-height: 18px;">该属性用来存储返回的视图信息</span>
  1. /** Model Map */
  2. private ModelMap model;//<span style="color: rgb(0, 130, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; line-height: 18px;">该属性用来存储处理后的结果数据</span>
  3. /**
  4. * Indicates whether or not this instance has been cleared with a call to {@link #clear()}.
  5. */
  6. private boolean cleared = false;
  7. /**
  8. * Default constructor for bean-style usage: populating bean
  9. * properties instead of passing in constructor arguments.
  10. * @see #setView(View)
  11. * @see #setViewName(String)
  12. */
  13. public ModelAndView() {
  14. }
  15. /**
  16. * Convenient constructor when there is no model data to expose.
  17. * Can also be used in conjunction with <code>addObject</code>.
  18. * @param viewName name of the View to render, to be resolved
  19. * by the DispatcherServlet's ViewResolver
  20. * @see #addObject
  21. */
  22. public ModelAndView(String viewName) {
  23. this.view = viewName;
  24. }
  25. /**
  26. * Convenient constructor when there is no model data to expose.
  27. * Can also be used in conjunction with <code>addObject</code>.
  28. * @param view View object to render
  29. * @see #addObject
  30. */
  31. public ModelAndView(View view) {
  32. this.view = view;
  33. }
  34. /**
  35. * Creates new ModelAndView given a view name and a model.
  36. * @param viewName name of the View to render, to be resolved
  37. * by the DispatcherServlet's ViewResolver
  38. * @param model Map of model names (Strings) to model objects
  39. * (Objects). Model entries may not be <code>null</code>, but the
  40. * model Map may be <code>null</code> if there is no model data.
  41. */
  42. public ModelAndView(String viewName, Map<String, ?> model) {
  43. this.view = viewName;
  44. if (model != null) {
  45. getModelMap().addAllAttributes(model);
  46. }
  47. }
  48. /**
  49. * Creates new ModelAndView given a View object and a model.
  50. * <emphasis>Note: the supplied model data is copied into the internal
  51. * storage of this class. You should not consider to modify the supplied
  52. * Map after supplying it to this class</emphasis>
  53. * @param view View object to render
  54. * @param model Map of model names (Strings) to model objects
  55. * (Objects). Model entries may not be <code>null</code>, but the
  56. * model Map may be <code>null</code> if there is no model data.
  57. */
  58. public ModelAndView(View view, Map<String, ?> model) {
  59. this.view = view;
  60. if (model != null) {
  61. getModelMap().addAllAttributes(model);
  62. }
  63. }
  64. /**
  65. * Convenient constructor to take a single model object.
  66. * @param viewName name of the View to render, to be resolved
  67. * by the DispatcherServlet's ViewResolver
  68. * @param modelName name of the single entry in the model
  69. * @param modelObject the single model object
  70. */
  71. public ModelAndView(String viewName, String modelName, Object modelObject) {
  72. this.view = viewName;
  73. addObject(modelName, modelObject);
  74. }
  75. /**
  76. * Convenient constructor to take a single model object.
  77. * @param view View object to render
  78. * @param modelName name of the single entry in the model
  79. * @param modelObject the single model object
  80. */
  81. public ModelAndView(View view, String modelName, Object modelObject) {
  82. this.view = view;
  83. addObject(modelName, modelObject);
  84. }
  85. /**
  86. * Set a view name for this ModelAndView, to be resolved by the
  87. * DispatcherServlet via a ViewResolver. Will override any
  88. * pre-existing view name or View.
  89. */
  90. public void setViewName(String viewName) {
  91. this.view = viewName;
  92. }
  93. /**
  94. * Return the view name to be resolved by the DispatcherServlet
  95. * via a ViewResolver, or <code>null</code> if we are using a View object.
  96. */
  97. public String getViewName() {
  98. return (this.view instanceof String ? (String) this.view : null);
  99. }
  100. /**
  101. * Set a View object for this ModelAndView. Will override any
  102. * pre-existing view name or View.
  103. */
  104. public void setView(View view) {
  105. this.view = view;
  106. }
  107. /**
  108. * Return the View object, or <code>null</code> if we are using a view name
  109. * to be resolved by the DispatcherServlet via a ViewResolver.
  110. */
  111. public View getView() {
  112. return (this.view instanceof View ? (View) this.view : null);
  113. }
  114. /**
  115. * Indicate whether or not this <code>ModelAndView</code> has a view, either
  116. * as a view name or as a direct {@link View} instance.
  117. */
  118. public boolean hasView() {
  119. return (this.view != null);
  120. }
  121. /**
  122. * Return whether we use a view reference, i.e. <code>true</code>
  123. * if the view has been specified via a name to be resolved by the
  124. * DispatcherServlet via a ViewResolver.
  125. */
  126. public boolean isReference() {
  127. return (this.view instanceof String);
  128. }
  129. /**
  130. * Return the model map. May return <code>null</code>.
  131. * Called by DispatcherServlet for evaluation of the model.
  132. */
  133. protected Map<String, Object> getModelInternal() {
  134. return this.model;
  135. }
  136. /**
  137. * Return the underlying <code>ModelMap</code> instance (never <code>null</code>).
  138. */
  139. public ModelMap getModelMap() {
  140. if (this.model == null) {
  141. this.model = new ModelMap();
  142. }
  143. return this.model;
  144. }
  145. /**
  146. * Return the model map. Never returns <code>null</code>.
  147. * To be called by application code for modifying the model.
  148. */
  149. public Map<String, Object> getModel() {
  150. return getModelMap();
  151. }
  152. /**
  153. * Add an attribute to the model.
  154. * @param attributeName name of the object to add to the model
  155. * @param attributeValue object to add to the model (never <code>null</code>)
  156. * @see ModelMap#addAttribute(String, Object)
  157. * @see #getModelMap()
  158. */
  159. public ModelAndView addObject(String attributeName, Object attributeValue) {
  160. getModelMap().addAttribute(attributeName, attributeValue);
  161. return this;
  162. }
  163. /**
  164. * Add an attribute to the model using parameter name generation.
  165. * @param attributeValue the object to add to the model (never <code>null</code>)
  166. * @see ModelMap#addAttribute(Object)
  167. * @see #getModelMap()
  168. */
  169. public ModelAndView addObject(Object attributeValue) {
  170. getModelMap().addAttribute(attributeValue);
  171. return this;
  172. }
  173. /**
  174. * Add all attributes contained in the provided Map to the model.
  175. * @param modelMap a Map of attributeName -> attributeValue pairs
  176. * @see ModelMap#addAllAttributes(Map)
  177. * @see #getModelMap()
  178. */
  179. public ModelAndView addAllObjects(Map<String, ?> modelMap) {
  180. getModelMap().addAllAttributes(modelMap);
  181. return this;
  182. }
  183. /**
  184. * Clear the state of this ModelAndView object.
  185. * The object will be empty afterwards.
  186. * <p>Can be used to suppress rendering of a given ModelAndView object
  187. * in the <code>postHandle</code> method of a HandlerInterceptor.
  188. * @see #isEmpty()
  189. * @see HandlerInterceptor#postHandle
  190. */
  191. public void clear() {
  192. this.view = null;
  193. this.model = null;
  194. this.cleared = true;
  195. }
  196. /**
  197. * Return whether this ModelAndView object is empty,
  198. * i.e. whether it does not hold any view and does not contain a model.
  199. */
  200. public boolean isEmpty() {
  201. return (this.view == null && CollectionUtils.isEmpty(this.model));
  202. }
  203. /**
  204. * Return whether this ModelAndView object is empty as a result of a call to {@link #clear}
  205. * i.e. whether it does not hold any view and does not contain a model.
  206. * <p>Returns <code>false</code> if any additional state was added to the instance
  207. * <strong>after</strong> the call to {@link #clear}.
  208. * @see #clear()
  209. */
  210. public boolean wasCleared() {
  211. return (this.cleared && isEmpty());
  212. }
  213. /**
  214. * Return diagnostic information about this model and view.
  215. */
  216. @Override
  217. public String toString() {
  218. StringBuilder sb = new StringBuilder("ModelAndView: ");
  219. if (isReference()) {
  220. sb.append("reference to view with name '").append(this.view).append("'");
  221. }
  222. else {
  223. sb.append("materialized View is [").append(this.view).append(']');
  224. }
  225. sb.append("; model is ").append(this.model);
  226. return sb.toString();
  227. }

在源码中有7个构造函数,如何用?是一个重点。构造ModelAndView对象当控制器处理完请求时,通常会将包含视图名称或视图对象以及一些模型属性的ModelAndView对象返回到DispatcherServlet。因此,经常需要在控制器中构造ModelAndView对象。ModelAndView类提供了几个重载的构造器和一些方便的方法,让你可以根据自己的喜好来构造ModelAndView对象。这些构造器和方法以类似的方式支持视图名称和视图对象。通过ModelAndView构造方法可以指定返回的页面名称,也可以通过setViewName()方法跳转到指定的页面 , 使用addObject()设置需要返回的值,addObject()有几个不同参数的方法,可以默认和指定返回对象的名字。

(1)当你只有一个模型属性要返回时,可以在构造器中指定该属性来构造ModelAndView对象:

  1. package com.apress.springrecipes.court.web;
  2. ...
  3. import org.springframework.web.servlet.ModelAndView;
  4. import org.springframework.web.servlet.mvc.AbstractController;
  5. public class WelcomeController extends AbstractController{
  6. public ModelAndView handleRequestInternal(HttpServletRequest request,
  7. HttpServletResponse response)throws Exception{
  8. Date today = new Date();
  9. return new ModelAndView("welcome","today",today);  //其中,welcome为跳转的页面,第一个today为key,第二个today为value
  10. }
  11. }

(2)如果有不止一个属性要返回,可以先将它们传递到一个Map中再来构造ModelAndView对象。

  1. package com.apress.springrecipes.court.web;
  2. ...
  3. import org.springframework.web.servlet.ModelAndView;
  4. import org. springframework.web.servlet.mvc.AbstractController;
  5. public class ReservationQueryController extends AbstractController{
  6. ...
  7. public ModelAndView handleRequestInternal(HttpServletRequest request,
  8. HttpServletResponse response)throws Exception{
  9. ...
  10. Map<String,Object> model = new HashMap<String,Object>();
  11. if(courtName != null){
  12. model.put("courtName",courtName);
  13. model.put("reservations",reservationService.query(courtName));
  14. }
  15. return new ModelAndView("reservationQuery",model);        //"reservationQuery"为返回页面,model是用来承接姚返回到前端页面的值得集合map
  16. }
  17. }

Spring也提供了ModelMap,这是java.util.Map实现,可以根据模型属性的具体类型自动生成模型属性的名称。

  1. package com.apress.springrecipes.court.web;
  2. ...
  3. import org.springframework.ui.ModelMap;
  4. import org.springframework.web.servlet.ModelAndView;
  5. import org.springframework.web.servlet.mvc.AbstractController;
  6. public class ReservationQueryController extends AbstractController{
  7. ...
  8. public ModelAndView handleRequestInternal(HttpServletRequest request,
  9. HttpServletResponse response)throws Exception{
  10. ...
  11. ModelMap model = new ModelMap();
  12. if(courtName != null){
  13. model.addAttribute("courtName",courtName);
  14. model.addAttribute("reservations",reservationService.query(courtName));
  15. }
  16. return new ModelAndView("reservationQuery",model);
  17. }
  18. }

这里,我又想多说一句:ModelMap对象主要用于传递控制方法处理数据到结果页面,也就是说我们把结果页面上需要的数据放到ModelMap对象中即可,他的作用类似于request对象的setAttribute方法的作用,用来在一个请求过程中传递处理的数据。通过以下方法向页面传递参数:

addAttribute(String key,Object value); //modelMap的方法

在页面上可以通过el变量方式${key}或者bboss的一系列数据展示标签获取并展示modelmap中的数据。

modelmap本身不能设置页面跳转的url地址别名或者物理跳转地址,那么我们可以通过控制器方法的返回值来设置跳转url地址别名或者物理跳转地址。 比如:

  1. public String xxxxmethod(String someparam,ModelMap model)
  2. {
  3. //省略方法处理逻辑若干
  4. //将数据放置到ModelMap对象model中,第二个参数可以是任何java类型
  5. model.addAttribute("key",someparam);
  6. ......
  7. //返回跳转地址
  8. return "path:handleok";
  9. }

在这些构造函数中最简单的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区别及详细分析的更多相关文章

  1. Spring框架中ModelAndView、Model、ModelMap区别

    原文地址:http://www.cnblogs.com/google4y/p/3421017.html SPRING框架中ModelAndView.Model.ModelMap区别   注意:如果方法 ...

  2. Spring框架中ModelAndView、Model、ModelMap区别 (转)

    原文地址:http://www.cnblogs.com/google4y/p/3421017.html SPRING框架中ModelAndView.Model.ModelMap区别   注意:如果方法 ...

  3. Spring 框架中 ModelAndView、Model、ModelMap 的区别

    Model Model 是一个接口, 其实现类为ExtendedModelMap,继承了ModelMap类. public class ExtendedModelMap extends ModelMa ...

  4. Spring框架中ModelAndView、Model、ModelMap的区别

    转自:http://blog.csdn.net/liujiakunit/article/details/51733211 1. Model Model 是一个接口, 其实现类为ExtendedMode ...

  5. 细说shiro之五:在spring框架中集成shiro

    官网:https://shiro.apache.org/ 1. 下载在Maven项目中的依赖配置如下: <!-- shiro配置 --> <dependency> <gr ...

  6. 【Spring】8、Spring框架中的单例Beans是线程安全的么

    看到这样一个问题:spring框架中的单例Beans是线程安全的么? Spring框架并没有对单例bean进行任何多线程的封装处理.关于单例bean的线程安全和并发问题需要开发者自行去搞定.但实际上, ...

  7. Spring5源码解析-Spring框架中的单例和原型bean

    Spring5源码解析-Spring框架中的单例和原型bean 最近一直有问我单例和原型bean的一些原理性问题,这里就开一篇来说说的 通过Spring中的依赖注入极大方便了我们的开发.在xml通过& ...

  8. Spring 框架中Http请求处理流程

    Spring Web http request请求流程: 首先介绍这边你需要知道的继承体系,DispacherServlet继承自FrameworkServlet,FrameworkServlet继承 ...

  9. 3.Spring框架中的标签与配置文件分离

    1.Spring框架中标签的配置 1. id属性和name属性的区别 * id -- Bean起个名字,在约束中采用ID的约束,唯一 * 取值要求:必须以字母开始,可以使用字母.数字.连字符.下划线. ...

随机推荐

  1. Linux_(3)Shell编程(上)

    一.shell 简介Shell 是一个用 C 语言编写的程序,它是用户使用 Linux 的桥梁.Shell 既是一种命令语言,又是一种程序设计语言.Shell 是指一种应用程序,这个应用程序提供了一个 ...

  2. Activity和Intent

  3. 探索未知种族之osg类生物---呼吸分解之advance

    回顾 我们用了两节的内容才堪堪讲解完ViewerBase::frame()函数中调用的realize()---Viewer:: realize()函数.我们简单的总结就是Viewer:: realiz ...

  4. Luogu 1341 无序字母对 - 欧拉路径

    Solution 找一条字典序最小的欧拉路径. 用 $multiset$ 存储领接表. 欧拉路径模板传送门 Code #include<cstdio> #include<cstrin ...

  5. 从1~N中任选出三个数,最小公倍数最大

    已知一个正整数N,问从1~N中任选出三个数,它们的最小公倍数最大可以为多少. 当n为奇数:n.n-1.n-2这是三个最大数,并且它们两两互质.因为连续的奇.偶.奇,互质.连续的两个数互质是因为它们的公 ...

  6. mysqli_query数据库有数据,查不出来

    MySQLDB.class.php <?php /** * 数据库操作工具类 */ class MySQLDB { // 定义相关属性 private $host;// 主机地址 private ...

  7. 最佳运动类APP-Keep设计与欣赏

    运动类APP是大家手机中必备的一款软件.如果说谁手机里没有任何涉及运动类APP,那只能说真的与时代脱轨了.近些年随着物质生活条件的改善,人们开始越来越重视自己的身体,所以也越来越多的人会进行身体锻炼. ...

  8. [转载]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/ ...

  9. [C#]“正在终止线程”的问题

    在C#中启用线程后,如果试图使用Abort方法来终止线程,那么必定会抛出“正在终止线程”的异常,一开始我也想过如何来避免这种异常出现,花了不少气力,但最后发现全是徒劳. 原因是一个正在运行的线程被终止 ...

  10. python中从内部循环直接跳出多层循环

    学习循环的时候碰到一道题,需要从内部循环中直接跳出所有循环,想了很久终于想到一种好办法(小白认知) 题目为:使用while循环输出100-50,从大到小,到50时,再循环输出0-50,从小到大. ex ...