<div class="login-container"> <div class="login-top-table"> <div class="login-top-table-cell"> <img src="../../../static/images/login-icon.png" class= ...
分类:
其他好文 时间:
2021-06-30 18:26:48
阅读次数:
0
第四天日期:2021年6月29日地点:宿舍 任务分配 姓名今日完成的任务 王生涛 总结软件测试过程 王玉江 总结软件测试过程 成员贡献时间 姓名贡献时间(小时) 王生涛 4 王玉江 4 软件测试总结 合计发现了15个Bug 燃尽图 ...
分类:
其他好文 时间:
2021-06-30 18:25:22
阅读次数:
0
本文章主要讨论和回答一下几个问题: equals()的四大特性 equals()和hashcode()之间的关系,为什么我们经常说这两个方法要么都重写,要么都不重写? HashMap、HashSet等容器为什么要求一定要重写equals()以及hashcode() equals() equals和h ...
分类:
其他好文 时间:
2021-06-30 18:11:13
阅读次数:
0
基于GraphicsMagick工具实现图片文字水印需求,并根据实测情况解决中文水印乱码问题。方案并非完美,欢迎大家一起讨论优化完善。 ...
分类:
其他好文 时间:
2021-06-30 18:10:21
阅读次数:
0
SQL 测试表脚本 1 DECLARE @Temp Table 2 ( 3 ID INT, 月份 4 MoneyData Float 金额 5 ) 6 7 insert INTO @TEMP 8 SELECT 1,100 UNION ALL 9 SELECT 2,200 UNION ALL 10 S ...
分类:
其他好文 时间:
2021-06-30 17:56:22
阅读次数:
0
本文内容:显示一个点云文件。 平台:vs2017+PCL1.8 1 #pragma warning(disable:4996) 2 #include <pcl/registration/ia_ransac.h>//采样一致性 3 #include <pcl/point_types.h> 4 #inc ...
分类:
编程语言 时间:
2021-06-30 17:51:50
阅读次数:
0
将点云显示封装为函数,在主函数里调用 1 #pragma warning(disable:4996) 2 #include <pcl/registration/ia_ransac.h>//采样一致性 3 #include <pcl/point_types.h> 4 #include <pcl/poi ...
分类:
编程语言 时间:
2021-06-30 17:49:47
阅读次数:
0
记录一个小坑,开发压测平台的时候碰到的。 背景:现在在开发压测平台,抽象类一些常用拦截器作为 starter ,供所有 module 使用(目前我们有7个) 。starter 中使用的一些 entity, 使用了 Threadlocal ,用于保存用户信息和部门信息 问题:在 module 依赖了 ...
分类:
其他好文 时间:
2021-06-30 17:41:03
阅读次数:
0
转自:https://blog.csdn.net/gao_zhennan/article/details/79099940 一,问题发生今天(18/1/18),我在尝试删除一个定义为auto_increment的主键时(所用语句:alter table testdrop primary key)结果 ...
分类:
数据库 时间:
2021-06-30 17:40:13
阅读次数:
0
TypeError: 'generator' object is not subscriptable,错误的原因就是把不具有下标操作对象用了对象[i],所以需要+list转化,加了之后,就不会报错了 ...
分类:
其他好文 时间:
2021-06-29 15:59:51
阅读次数:
0