/////////////////////////// 代码如下 <template> <div class="report-forms-page"> <div class="report-forms-main"> <div class="bottomForm"> <div style="margi ...
分类:
其他好文 时间:
2021-04-27 14:31:54
阅读次数:
0
using System; namespace EventDelegation { /// <summary> /// 事件参数类 /// </summary> public class EventDate : EventArgs { public int eventID; public int a ...
C++(template模板 && 类模板 成员函数类外实现) 类模板,成员函数类外实现 #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> using namespace std; template<class ...
分类:
编程语言 时间:
2021-04-27 14:30:06
阅读次数:
0
mysql由5.0升级至8.0 1:jar包的变换 <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.1</version> </dependency> 2 ...
分类:
数据库 时间:
2021-04-27 14:19:35
阅读次数:
0
1,二分查找 LCP 12. 小张刷题计划 1011. 在 D 天内送达包裹的能力 参考解题:c++/python3 全是套路 标准二分查找三大框架之一 Binary Search 1,写出判定一个值是否可以满足条件的函数g 2,找出左右边界(最小的可能值L,与最大的可能值R) 3,while L< ...
分类:
其他好文 时间:
2021-04-27 14:18:51
阅读次数:
0
Maven资源导出问题 maven由于他的约定大于配置,我们之后可以能遇到我们写的配置文件,无法被导出或者生效的问题,解决方案: <!--在build中配置resources,来防止我们资源导出失败的问题--> <build> <resources> <resource> <directory>sr ...
分类:
其他好文 时间:
2021-04-27 14:16:29
阅读次数:
0
Typora 软件的基本使用 1. 标题 一级标题: # 二级标题:## .. 2. 列表 1.1 无序列表(-) 1.2 有序列表(1.) 3. 引用(>) command+option+Q 引用效果 4. 代码块 (```+代码编程语言) command+option+C print("hell ...
分类:
其他好文 时间:
2021-04-27 14:15:28
阅读次数:
0
参考:https://www.cnblogs.com/fuhai/p/7169805.html 正则表达式匹配主要有两种,匹配字符和匹配位置。环视我个人理解应该更像是匹配位置的。具体下文说到。下面先看一下环视的正则表达式书写格式。 类型 正则表达式 匹配成功条件 肯定逆序环视 (?<=expresi ...
分类:
其他好文 时间:
2021-04-27 14:14:39
阅读次数:
0
参考 https://blog.csdn.net/Simon798/article/details/103161482 先上代码: // Test_Console.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <afx.h> #includ ...
分类:
编程语言 时间:
2021-04-27 14:13:15
阅读次数:
0
今天我来分享一下如何利用素数分解定理求解与n互质的数的个数。 下面是代码 #include<bits/stdc++.h> using namespace std; long long fun(int x) { long long ans=x; int t=sqrt(x); int cnt; for( ...
分类:
其他好文 时间:
2021-04-26 14:12:06
阅读次数:
0