JSONObject jsonObject1 =JSONObject.parseObject(String) @RequestMapping(params="getICInfo") @ResponseBody @ApiOperation(value="IC接口",produces="applicat ...
分类:
Web程序 时间:
2020-05-13 20:19:13
阅读次数:
57
#include<iostream> using namespace std; int main() { cout << "sizeof(int*)="<<sizeof(int*) << endl; cout << "sizeof(int)=" << sizeof(int) << endl; } c ...
分类:
其他好文 时间:
2020-05-13 19:49:30
阅读次数:
68
1.vim/vi 添加多行内容 2.cat >> 文件名 <<EOF 3.echo -e "xxx \n xxx" >> 文件名 4.sed -i'na/i xxxx\nxxxx\nxxxx' 文件名 ...
分类:
其他好文 时间:
2020-05-13 00:23:22
阅读次数:
79
// Hey buddy you get the wrong door, the leather club is two blocks down. #include <bits/stdc++.h> using namespace std; const int N = 200, INF = 0x3f3 ...
分类:
其他好文 时间:
2020-05-12 20:16:46
阅读次数:
73
一、实验要求 1、按照https://github.com/mengning/mykernel 的说明配置mykernel 2.0,熟悉Linux内核的编译; 2、基于mykernel 2.0编写一个操作系统内核,参照https://github.com/mengning/mykernel 提供的范 ...
分类:
其他好文 时间:
2020-05-12 20:05:43
阅读次数:
73
" Milk Patterns " 题意 给出n个数字,以及一个k,求至少出现k次的最长子序列的长度 思路 和poj 1743思路差不多,二分长度,把后缀分成若干组,每组任意后缀公共前缀都 =当前二分的长度。统计是否有某个组后缀数量 =k,如果有当前长度就可以。 代码 ...
分类:
编程语言 时间:
2020-05-12 10:07:26
阅读次数:
64
一改以前 本次先上代码 package good; //Evaluate complex expressions import java.util.Scanner; public class Example { public static void main(String[] arg) {//tes ...
分类:
其他好文 时间:
2020-05-12 09:47:25
阅读次数:
65
1、数据备份 SAVE 同步保存数据到硬盘 BGSAVE 在后台异步保存当前数据库的数据到磁盘,将在 redis 安装目录中创建dump.rdb文件 SHUTDOWN [NOSAVE] [SAVE] 异步保存数据到硬盘,并关闭服务器 LASTSAVE 返回最近一次 Redis 成功将数据保存到磁盘上 ...
分类:
其他好文 时间:
2020-05-11 23:42:35
阅读次数:
64
```C# using System; using UnityEngine; public class Foo:MonoBehaviour{ private void Awake(){ Debug.Log("Foo.Awake();"); } private void OnEnable(){ Deb... ...
分类:
编程语言 时间:
2020-05-11 19:03:50
阅读次数:
157
哈哈哈,我又回来了!!!! 上一篇博客说到 获取变量名称 常规推荐用法是 nameof() 但实际应用场景往往是多变的,在某些特定情况下 nameof()就无法满足相关需求,废话不多说上场景 1.常规做mvc对象认证的时候 我的某个属性是实体对象 例如BasicInfo 假设 当前BasicInfo ...