#include <string> #include <map> #include <iostream> int main(void) { std::map<int,std::string> test_map; test_map[1] = "value1"; test_map[2] = "value ...
分类:
编程语言 时间:
2020-07-18 15:45:39
阅读次数:
67
China and Buddhism By far the most important gift that China received from India was neither cotton, nor sugar, nor the knowledge of saltpeter, but a ...
分类:
其他好文 时间:
2020-07-18 15:35:38
阅读次数:
83
~/.vimrc内容如下: set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'tpope/vim-fugi ...
分类:
系统相关 时间:
2020-07-18 13:52:57
阅读次数:
109
XProtect installer may fail with the error "Category does not exist" or "Cannot load Counter Name data because an invalid index" When running the XPro ...
分类:
其他好文 时间:
2020-07-17 19:49:17
阅读次数:
124
之前一直以为while 语句只能在函数中执行,今天算是涨知识了. DO $$ DECLARE i INTEGER := 1; identityId BIGINT := 200000000001; BEGIN WHILE i < 100 LOOP identityId = identityId + 1 ...
分类:
其他好文 时间:
2020-07-17 19:32:52
阅读次数:
70
verilog之时钟信号的编写2 1、时钟信号的特点 时钟信号除了可以根据时序一个个变化列举出来,还可以利用其循环的变化的特点,使用循环执行语句always来实现。这种方法实现的时钟信号可以一直执行且不需要关注每个变化点的延时。 2、基于begin-end块的时钟信号 initial begin c ...
分类:
其他好文 时间:
2020-07-17 09:38:10
阅读次数:
92
.gitignore常用配置 #Maven beginning target/ pom.xml.tag pom.xml.releaseBackup pom.xml.versionsBackup pom.xml.next release.properties dependency-reduced-po ...
分类:
其他好文 时间:
2020-07-17 09:28:37
阅读次数:
83
--语句新建一个定时任务 declare job number;BEGIN DBMS_JOB.SUBMIT( JOB => job, /*自动生成JOB_ID*/ WHAT => 'p_monitor_tablespace;', /*需要执行的存储过程名称或SQL语句*/ NEXT_DATE => ...
分类:
数据库 时间:
2020-07-16 21:24:07
阅读次数:
107
verilog之简单时钟信号的编写 1、数字时钟信号 在数字电路中,时钟信号是重要的一类信号,一般作为激励源驱动时序电路。掌握时钟信号的编写,对于时序电路的仿真具有重要意义。所有的时序电路都需要设置时钟信号来确认时序。这里先写一个已知时间间隔的简易时钟信号。 2、基于begin-end的编写 ini ...
分类:
其他好文 时间:
2020-07-15 23:38:36
阅读次数:
138
#include <iostream> #include<algorithm> #include<vector> using namespace std; void swap(int& a, int& b) { int t = a; a = b; b = t; } void quicksort(ve ...
分类:
编程语言 时间:
2020-07-15 23:16:35
阅读次数:
65