##1、安装必备软件包 yum install -y gcc gcc-c++ autoconf automake bison libtool lrzsz make ncurses-devel 安装cmake 可以使用yum安装 yum -y install cmake 也可以使用源码安装 wget ...
分类:
数据库 时间:
2020-07-22 01:56:06
阅读次数:
105
Given a singly linked list, you are supposed to rearrange its elements so that all the negative values appear before all of the non-negatives, and all ...
分类:
其他好文 时间:
2020-07-19 00:50:18
阅读次数:
85
char * longestCommonPrefix(char ** strs, int strsSize){ char ch; int len=0, i, j; if (strsSize < 1) {return "";} len = strlen(strs[0]); for (i=1; i<st ...
分类:
其他好文 时间:
2020-07-19 00:36:29
阅读次数:
79
<head> <style> .adModal{ position:fixed; background: black; top: 0; right: 0; bottom: 0; left: 0; z-index: 998; opacity: 0.4; } .tdModal{ position:fix ...
分类:
其他好文 时间:
2020-07-18 19:50:38
阅读次数:
67
_1:改变选中时候的背景色处理: ::selection { color:#fff; background-color: #5CB85C ;} ::-moz-selection { color:#fff; background-color: #5CB85C ;} ::-webkit-selectio ...
分类:
其他好文 时间:
2020-07-17 14:07:11
阅读次数:
72
六、rpm工具使用 6.1 概述 RPM(RedHat Package Manager),红帽子软件包管理工具,类似windows里面的setup.exe,是Linux系列操作系统里面的打包安装工具,它虽然是Redhat的标志,但理念是通用的。 RPM包的名称格式:Apache-1.3.23-11. ...
分类:
系统相关 时间:
2020-07-16 21:50:55
阅读次数:
122
一、pom文件引入所需jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <depende ...
分类:
编程语言 时间:
2020-07-16 21:12:01
阅读次数:
79
这是我在工作中用的几种方式,有兴趣可以试试。 1.用<froeach>标签加oracle的begin end语句块实现 动态新增,根据传入的字段新增,其中主键是用的sequence,所以是固定的 1 <insert id="insertSelective"> 2 <foreach collectio ...
分类:
数据库 时间:
2020-07-15 15:22:54
阅读次数:
85
用树的结构遍历数组 package com.atguigu.datastructures.binarytree object ArrayTreeDemo { def main(args: Array[String]): Unit = { val arr = Array(1,2,3,4,5,6,7) ...
分类:
其他好文 时间:
2020-07-13 11:30:18
阅读次数:
60
1 let linepopup; 2 3 LineLayer.on('mouseover', function (e) { 4 5 let loc = e.layer.feature.geometry.coordinates; 6 let tooltip = e.layer.feature.prop ...
分类:
其他好文 时间:
2020-07-13 09:53:39
阅读次数:
120