出现原因: 使用了不存在的兑现 数组越界 用delete释放未分配的内存空间,或者超过一次释放同个内存。 比如: 顺序不能颠倒 正确: ui->setupUi(this); ui->tableWidget->setColumnWidth(0, 100); 错误: ui->tableWidget->s ...
分类:
其他好文 时间:
2020-04-17 00:26:32
阅读次数:
93
1、jquery介绍 jQuery是目前使用最广泛的javascript函数库,jQuery的版本分为1.x系列和2.x、3.x系列,1.x系列兼容低版本的浏览器,2.x、3.x系列放弃支持低版本浏览器。 jquery是一个函数库,一个js文件,页面用script标签引入这个js文件就可以使用。 < ...
分类:
Web程序 时间:
2020-04-16 20:53:08
阅读次数:
86
介绍 Python代码审计方法多种多样,但是总而言之是根据前人思路的迁移融合扩展而形成。目前Python代码审计思路,呈现分散和多样的趋势。Python微薄研发经验以及结合实际遇到的思路和技巧进行总结,以便于朋友们的学习和参考。 反序列化审计实战 反序列化漏洞在Python代码审计中属于常见高危漏洞 ...
分类:
编程语言 时间:
2020-04-16 16:54:51
阅读次数:
103
查找当前目录及子目录下以.log结尾的文件路径find . -name "*.log"https://www.jianshu.com/p/ea8cc2248022 ...
分类:
系统相关 时间:
2020-04-16 15:39:14
阅读次数:
88
1、查看kubectl命令帮助kubectl –h 1 kubectl controls the Kubernetes cluster manager. 2 Find more information at: https://kubernetes.io/docs/reference/kubectl/... ...
分类:
Web程序 时间:
2020-04-16 15:15:14
阅读次数:
83
错误状态:nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) 1.先使用ps -e | grep nginx查看是否已经启动了nginx 2.如果没有的话则按照提示,查看0.0.0.0:80端口谁占用了,使用 ...
分类:
其他好文 时间:
2020-04-16 15:13:03
阅读次数:
57
在manifest中注册BoostFlutterActivity报错:Installation did not succeed.The application could not be installed: INSTALL_FAILED_USER_RESTRICTEDInstallation via ...
分类:
其他好文 时间:
2020-04-16 13:21:38
阅读次数:
153
Given a 2D board and a list of words from the dictionary, find all words in the board. Each word must be constructed from letters of sequentially adja ...
分类:
其他好文 时间:
2020-04-16 10:31:28
阅读次数:
82
# vep # 使用vep对manta结果进行注释 # manta结果是染色体结构变异(SV),这里使用vep进行注释 # vep官方说明文档: # http://asia.ensembl.org/info/docs/tools/vep/script/vep_tutorial.html # 安装 c ...
分类:
其他好文 时间:
2020-04-16 10:30:17
阅读次数:
1155
一:解题思路 采用二分搜索的思想来做。 Time:O(log(n)),Space:O(1) 二:完整代码示例 (C++版和Java版) C++: class Solution { public: int findPeakElement(vector<int>& nums) { if (nums.si ...
分类:
编程语言 时间:
2020-04-15 21:14:01
阅读次数:
80