题目描述 In mathematics, matrix multiplication or matrix product is a binary operation that produces a matrix from two matrices with entries in a field, o ...
分类:
其他好文 时间:
2018-08-10 01:28:21
阅读次数:
158
.net core中使用C#的int类型,存在数值上下限范围,如下: 运行得到结果 此时如果执行以下代码 得到范围结果是 很奇怪,执行max+3得到结果成了min+2 查询官方教程 If a calculation produces a value that exceeds those limits ...
分类:
Web程序 时间:
2018-07-31 13:28:19
阅读次数:
159
Packets Description A factory produces products packed in square packets of the same height h and of the sizes 1*1, 2*2, 3*3, 4*4, 5*5, 6*6. These pro ...
分类:
其他好文 时间:
2018-07-27 19:20:32
阅读次数:
191
题目描述 A factory produces products packed in square packets of the same height h and of the sizes 1*1, 2*2, 3*3, 4*4, 5*5, 6*6. These products are alway ...
分类:
其他好文 时间:
2018-07-20 00:19:20
阅读次数:
197
报错码为以下内容,把自己走的坑贴出来,免得大家如同样的坑。以下解决方法仅供参考。 原因为Controller中的注解 @RequestMapping(value = "***",produces = {"text/html;charset = UTF-8;","application/json;"} ...
分类:
编程语言 时间:
2018-07-18 17:09:24
阅读次数:
243
之前项目中使用的的thrift来建模,维护前后台模型以及rest接口,前台使用的是angular2; 但是使用thrift只能生成建模,后台的rest接口的Controller文件还是需要手动去写,一旦接口改动就会涉及到很多方面。 由此准备使用Swagger和mustache模板来做一个maven插 ...
分类:
其他好文 时间:
2018-07-15 19:49:36
阅读次数:
401
1 # redis 配置文件示例 2 3 # 当你需要为某个配置项指定内存大小的时候,必须要带上单位, 4 # 通常的格式就是 1k 5gb 4m 等酱紫: 5 # 6 # 1k => 1000 bytes 7 # 1kb => 1024 bytes 8 # 1m => 1000000 bytes ... ...
分类:
其他好文 时间:
2018-07-14 23:04:10
阅读次数:
232
感觉很多贪心的题目只要想到怎么贪心就很快能解决,但是没有想到的话代码量就会很大,而且很容易出错,所有贪心还是要多做题目,掌握各种贪心的题目 题目链接:https://vjudge.net/contest/231313#problem/D A factory produces products pac ...
分类:
编程语言 时间:
2018-07-13 13:18:02
阅读次数:
181
添加jackson依赖 添加@ResponseBody 测试: 注意,如果输入中文,出现乱码现象,则需要@RequestMapping(value="/appinterface", produces = "text/json;charset=UTF-8") 原理: 当一个处理请求的方法标记为@Res ...
分类:
Web程序 时间:
2018-07-08 18:08:16
阅读次数:
208
如前台显示的json数据中的中文为???,则可尝试以下方法。 方法一(推荐):在@RequestMapping中添加 produces={"text/html;charset=UTF-8;","application/json;"} 方法二:在配置文件的 mvc:annotation-driven ...
分类:
编程语言 时间:
2018-07-06 17:44:13
阅读次数:
177