参考地址:https://blog.csdn.net/peihexian/article/details/78261141?locationNum=8&fps=1(地址里面有一些配置是和我的不同,比如那个日期参考地址是36500而我的是365) 可能遇到的配置错误参考地址(常见错误):https:/ ...
哈希算法与 \(KMP\) 算法是两种处理字符串问题的常用算法 哈希 \(Hash\) 哈希算法是通过构造一个哈希函数,将一种数据转化为可用变量表示或者是可作数组下标的数 哈希函数转化得到的数值称之为哈希值 通过哈希算法可以实现快速匹配与查找 字符串 \(Hash\) 一般用于寻找一个字符串的匹配串 ...
分类:
其他好文 时间:
2021-01-08 11:26:36
阅读次数:
0
整型提升是C语言的一种规则,由C语言的发明人丹尼斯·里奇与肯·汤普逊创设: "A character, a short integer, or an integer bit-field, all either signed or not, or an object of enumeration ty ...
分类:
编程语言 时间:
2021-01-07 12:31:44
阅读次数:
0
import Vue from "vue"; import Router from "vue-router";// 引用路由 import Home from "./views/Home.vue";//导入方法1 Home页面 Vue.use(Router); export default new ...
分类:
Web程序 时间:
2021-01-07 12:23:53
阅读次数:
0
<!-- 父组件 --> <template> <view> <syncA :title.sync="title"></syncA> </view> </template> <script> export default { data() { return { title:"hello vue.js ...
分类:
其他好文 时间:
2021-01-07 11:53:43
阅读次数:
0
<script> export default { data() { return { a: 1, b: 2, c: 3, d: 4, e: { f: { g: 5 } } } }, watch: { a: function(val, oldVal) { console.log('new: %s, ...
分类:
其他好文 时间:
2021-01-07 11:49:57
阅读次数:
0
main.js 全局引入轮播图的js 和 css文件 <template> <div> <h1>轮播图案例</h1> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide" v-for ...
分类:
其他好文 时间:
2021-01-06 12:17:44
阅读次数:
0
报错信息: Error: Kubernetes cluster unreachable: Get "http://localhost:8080/version?timeout=32s": dial tcp [::1]:8080: connect: connection refused 报错原因: h ...
分类:
Web程序 时间:
2021-01-06 11:38:10
阅读次数:
0
1. A warning:comparison between signed and unsigned integer expressions [-Wsign-compare]:有符号数和无符号数的比较警告 为什么出错呢 很多时候你必须声明一下 unsigned int 如果不声明,有时候进行比较, ...
分类:
其他好文 时间:
2021-01-05 11:18:11
阅读次数:
0
先来看一段代码,就是一小段而已: export function loginWithWx() { wx.showLoading({ title: "登录中..." }); wx.login({ success: res => { wx.request({ url: `${apiRoot}wx/${r ...
分类:
编程语言 时间:
2021-01-04 11:11:14
阅读次数:
0