题目: Monocarp had a sequence a consisting of n+m integers a1,a2,…,an+m. He painted the elements into two colors, red and blue; n elements were painted ...
分类:
其他好文 时间:
2021-01-20 12:13:42
阅读次数:
0
sqlserver自带的json的操作主要能实现:json验证、字段提取、表格转json、json转表格式 下方所用json统一为当前json declare @json nvarchar(max) = '{ "id": 1, "name": "ki", "age": 22, "son": { "n ...
分类:
数据库 时间:
2021-01-20 11:51:55
阅读次数:
0
std::weak_ptr 避免shared_ptr内存泄漏的利器。 smart pointer 三兄弟性格各异。unque_ptr是独来独往,shared_ptr是左拥右抱,而weak_ptr生来就不是为了单打独斗,了解之后你会发现他总是和shared_ptr出双入对。 既然shared_ptr是 ...
分类:
其他好文 时间:
2021-01-20 11:45:59
阅读次数:
0
重装了Windows10专业版,在工作后关闭所有软件窗口,在桌面发现弹出下面错误的窗口: 解决办法: 尝试下干净启动,重启后手动关闭第三方安全优化软件,然后在任务管理器中查看下是否有其它的三方软件正在运行,全部关闭: 1、Win+R输入:msconfig 打开系统配置 2、点击”服务”标签卡,勾选” ...
分类:
Web程序 时间:
2021-01-18 11:09:04
阅读次数:
0
一:背景图像区域: background-clip:指定背景绘制区域 border-box:背景被剪裁到边框盒 padding-box:背景被剪裁到内边距框 content-box:背景被剪裁到内容框 content-box padding-box border-box <!DOCTYPE html ...
分类:
Web程序 时间:
2021-01-18 10:43:54
阅读次数:
0
Inline vs. block-level elements: a demonstration HTML (Hypertext Markup Language) elements historically were categorized as either "block-level" eleme ...
分类:
其他好文 时间:
2021-01-14 11:28:29
阅读次数:
0
1 通过style属性中的 display : none { 这种是最常用方式之一 } 这两种方式的区别是: display 设置为 none之后, 该元素不占用文档流 visibility 设置为 hidden之后, 该元素仍然占用文档流, 只不过是看不见了而已 2 通过style属性中的 vis ...
分类:
Web程序 时间:
2021-01-14 11:17:34
阅读次数:
0
Merge Sorted Array (E) 题目 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements in ...
分类:
其他好文 时间:
2021-01-13 11:10:22
阅读次数:
0
当传参data为二维数组,Content-Type: application/x-www-form-urlencoded时, $a = array('a','b','c'); $a['d'] = array('e','f','g'); 传参为二维数组时 $a['d'] = json_encode($ ...
分类:
Web程序 时间:
2021-01-11 11:10:40
阅读次数:
0
1.打开命令窗口cmd,输入命令:net stop mysql,停止MySQL服务 2.开启跳过密码验证登录的MySQL服务 mysqld --console --skip-grant-tables --shared-memory 3.再打开一个新的cmd,无密码登录MySQL,输入登录命令:mys ...
分类:
数据库 时间:
2021-01-11 10:55:08
阅读次数:
0