基本思想: 和示例思想相同,典型的字符串处理,注意即可,没啥新意; 关键点: 字符串问题; 1 #include<iostream> 2 #include<stdlib.h> 3 #include<stdio.h> 4 #include<vector> 5 #include<string> 6 #i ...
分类:
其他好文 时间:
2020-01-16 12:19:52
阅读次数:
46
启动springboot的时候莫名其妙出现这个错误,我properties里面也没配置数据源啥的,但就是出现这个错误 解决方法: 在启动类上加@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class}) 即在@SpringB ...
分类:
Web程序 时间:
2020-01-15 19:21:45
阅读次数:
90
1.前言 做项目就难免会开发交互效果或者特效,而我最近开发的项目一直在使用vue,开发技术栈方面,理所当然就使用了vue+css3开发,过程中发现使用vue+css3开发特效,和javascript/jquery+css3的思维方式不一样,但是比javascript/jquery+css3简单一点点 ...
分类:
Web程序 时间:
2020-01-14 20:59:11
阅读次数:
125
根据官网给的https://aspnetboilerplate.com/Pages/Articles/Introduction-With-AspNet-Core-And-Entity-Framework-Core-Part-1/index.html和https://aspnetboilerplate ...
分类:
移动开发 时间:
2020-01-14 11:37:16
阅读次数:
188
/*第一种方式*/ $sql="select value from dede_sysconfig where varname='cfg_notallowstr'"; $mingan=$link->query($sql); $arr = $mingan->fetch_row(); //数组元素组合成字 ...
分类:
其他好文 时间:
2020-01-13 18:03:37
阅读次数:
97
1.链表的创建,以下: void AddToTail(Link ** head,int value) { Link * p = new Link(); Link * ahead = *head; p->value = value; p->next = NULL; if(*head == NULL) ...
分类:
其他好文 时间:
2020-01-13 16:23:13
阅读次数:
72
1、卸载旧docker sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engi ...
分类:
其他好文 时间:
2020-01-13 16:06:38
阅读次数:
75
""" PDU 7-bit 编码 第一个字符,去掉最高位,将第二个字符的最低位移入第一个字符的最高位。 第二个字符,右移1位,去掉最高2位,将第三个字符的最低2位移入第二个字符的最高2位。 第三个字符,右移2位,去掉最高3位,将第四个字符的最低3位移入第三个字符的最高3位。 以此类推,到第八个字符, ...
分类:
编程语言 时间:
2020-01-12 19:47:40
阅读次数:
115
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> div { margin: 0; padding: 0; } .container { width: 600px; ...
分类:
其他好文 时间:
2020-01-12 17:56:39
阅读次数:
110
java框架整合错误:org.hibernate.AnnotationException: No identifier specified for entity 错误原因是因为在对VipOperatorDto进行对象关系映射的时候忘记加上主键@Id了。 这个错是hibernate的annotatio ...
分类:
编程语言 时间:
2020-01-12 15:02:24
阅读次数:
73