c++11提供了关键字noexcept,用来指明某个函数无法——或不打算——抛出异常: void foo() noexcept; // a function specified as will never throw void foo2() noexcept(true); // same as fo ...
分类:
编程语言 时间:
2020-09-17 17:07:05
阅读次数:
27
java.lang.RuntimeException: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or ...
分类:
数据库 时间:
2020-09-17 17:02:29
阅读次数:
51
1 int main() { 2 vector<int> nums{ 5,4,2,6,7,3,9 }; 3 int length = nums.size(); 4 5 stack<vector<int>>sk1; 6 vector<int>rightFirstMax(length, 0); 7 fo ...
分类:
其他好文 时间:
2020-09-17 16:13:12
阅读次数:
18
由于是无向无权图,采用BFS 自环对于最短路无影响 重边和其它边对最短路径数的影响是一样的,不用做特别处理 采用dp思想即可统计出1号点到每个点的最短路径数 const int N=1e6+10; vector<int> g[N]; int dist[N]; bool vis[N]; int cnt ...
分类:
其他好文 时间:
2020-09-17 15:36:22
阅读次数:
25
https://github.com/januwA/GameCheat #include "pch.h" #include <iostream> #include <Windows.h> #include "GameCheat.h" using namespace std; void __stdca ...
分类:
编程语言 时间:
2020-09-17 15:31:59
阅读次数:
36
从代码的角度介绍管道的实际使用方式。有关管道的说明,网上已有较多的篇幅介绍,自行查阅。 本篇博客是使用管道处理名字, 实现统一处理的目的。 一、控制器部分 <?php namespace App\Http\Controllers; use App\Pipes\RemoveBadWords; use ...
分类:
其他好文 时间:
2020-09-17 14:20:05
阅读次数:
30
项目开发中使用了谷歌推荐的实现类似网易云音乐的上弹对话框BottomSheetDialog控件,该控件在竖屏状态下显示没有问题,但是在横屏状态下弹窗只能显示一半,需要手动往上滑一下才能完全显示。在网上找了下解决方案,看到了https://www.jianshu.com/p/50c54d8e0d4a ...
分类:
其他好文 时间:
2020-09-17 13:02:24
阅读次数:
50
20行写完极其害怕 只能跑1e5的数据,那个1e6强制在线的开o2只有20pts QAQ 不用reserve也可以过,不过开了之后200ms的点只要130-140ms #include<bits/stdc++.h> using namespace std; #define ll long long ...
分类:
其他好文 时间:
2020-09-17 12:26:24
阅读次数:
24
摘要: 今天我们来学习 Golang 中的一个基本的数据结构 slice, 这个和 C++ 中的 vector 容器思想基本一致,是一个容量可变的数组,那我们就来看下它和 array 的区别和联系,并对其中的典型操作给出分析。 数据结构 // StringHeader is the runtime ...
分类:
其他好文 时间:
2020-09-17 12:02:07
阅读次数:
24
1.第一个springboot applicat.properties: server.port=80 可以更改运行端口号 banner.text 在resource文件夹中加入banner.text网上搜springboot的运行图行,添加进去就可以改变运行出来的图形了。banner.text: ...
分类:
编程语言 时间:
2020-09-15 21:06:58
阅读次数:
95