码迷,mamicode.com
首页 >  
搜索关键字:identifier highlight    ( 9948个结果
ssm在maven项目中的需要的依赖
<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.2</version> </dependency> <depe ...
分类:其他好文   时间:2021-04-27 15:21:44    阅读次数:0
moment获取本月、上个月、近三个月时间段
// 本月 this.startEndTime = [moment().startOf('month').format('YYYY-MM-DD'), moment().endOf('month').format('YYYY-MM-DD')]; // 上个月 this.startEndTime = [ ...
分类:其他好文   时间:2021-04-24 13:14:25    阅读次数:0
sizeof
#include <stdio.h> #include <iostream> using namespace std; class abc { private: int a; int b; }; int main() { cout << "Hello, World!" << endl; cout < ...
分类:其他好文   时间:2021-04-22 15:25:05    阅读次数:0
Vuex----Getters
Getter 用于对 Store中的数据进行加工处理形成新的数据。 Getter 不会修改 Store 中的原数据,它只起到一个包装器的作用,将Store中的数据加工后输出出来。 const store = new Vuex.Store({ state:{ count:0 }, getters: { ...
分类:其他好文   时间:2021-04-20 15:30:26    阅读次数:0
Caused by:com.rabbitmq.client.ShutdownSignalException: connection error;(reply-code=530, reply-text=NOT_ALLOWED - access to vhost '/' refused for user 'admin'
学习rabbitMQ时 自己写了一个发送者 案例 运行后报错: Caused by: com.rabbitmq.client.ShutdownSignalException: connection error; protocol method: #method<connection.close>(r ...
分类:数据库   时间:2021-04-20 14:20:37    阅读次数:0
基于centos系统 使用docker搭建Web服务器 nginx
前提条件: 已安装centos、docker nginx搭建方式: 1.首先进入centos系统,打开命令行 docker pull nginx:1.17.9 --安装指定版本nginx,这里选择1.17.9据说比较稳定 2.启动nginx docker run -p 80:80 nginx:1.1 ...
分类:Web程序   时间:2021-04-19 14:38:17    阅读次数:0
[转]java 计算两个时间差得出:时分秒
用到:java.time,java.util两个jar包,系统默认的包 @Test public void ddd(){ LocalDateTime inDate = convertDateToLDT(DateUtils.strToDate("2021-04-13 17:45", DateUtils ...
分类:编程语言   时间:2021-04-15 12:50:08    阅读次数:0
sw抄来的主席树
//本模板是离散后对权值建树 #include<bits/stdc++.h> #define mid (l+r>>1) using namespace std; const int N=2e5+10; struct TR { int sum,lo,ro; }tr[N<<5]; int tr_cnt; ...
分类:其他好文   时间:2021-04-15 12:28:09    阅读次数:0
linux 删除中文乱码
ls -li find . -inum 1840704 -exec rm {} -rf \; ...
分类:系统相关   时间:2021-04-15 12:07:25    阅读次数:0
6.synchronized的使用注意点
先来个单例模式的线程安全代码 package basic.single; public class SingleTon { private SingleTon(){ System.out.println(Thread.currentThread().getName()); } private sta ...
分类:其他好文   时间:2021-04-14 11:58:53    阅读次数:0
9948条   上一页 1 ... 6 7 8 9 10 ... 995 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!