1. 可空类型修饰符(?) 引用类型可以使用空引用表示一个不存在的值,而值类型通常不能表示为空。例如:string str=null; 是正确的,int i=null; 编译器就会报错。为了使值类型也可为空,就可以使用可空类型,即用可空类型修饰符"?“来表示,表现形式为"T?”例如:int? 表示可 ...
分类:
Windows开发 时间:
2019-11-19 13:03:56
收藏:
0 评论:
0 赞:
0 阅读:
75
公司有个同事在未打招呼的情况下把公司服务器进行重新装系统,崩溃啊。SVN之前未备份,还好SVN的库(Repositories)还在,如下图: 恢复办法如下: 由于之前安装的就是VisualSVN-Server,所以我下载了最新版的VisualSVN-Server。下载及安装方法参考svnmanage ...
分类:
Windows开发 时间:
2019-11-19 12:48:12
收藏:
0 评论:
0 赞:
0 阅读:
92
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks... ...
分类:
Windows开发 时间:
2019-11-19 12:19:00
收藏:
0 评论:
0 赞:
0 阅读:
123
Swagger其实包含了三个部分,分别是Swagger Editor文档接口编辑器,根据接口文档生成code的Swagger Codegen,以及生成在线文档的Swagger UI。在AspNetCore中通常使用Microsoft封装的Swashbuckle来使用Swagger UI,这是一个As ...
分类:
Windows开发 时间:
2019-11-19 12:06:02
收藏:
0 评论:
0 赞:
0 阅读:
118
去重 去重 去重 1. 去重 2. 去重 3. 去重 ...
分类:
Windows开发 时间:
2019-11-19 11:53:50
收藏:
0 评论:
0 赞:
0 阅读:
409
转自:https://www.cnblogs.com/shuilangyizu/p/10365604.html 使用 VisualSVN Server来实现主要的 SVN功能则要比使用原始的 SVN和Apache相配合来实现源代码的 SVN管理简单的多,下面就看看详细的说明。 VisualSVN S ...
分类:
Windows开发 时间:
2019-11-19 11:20:56
收藏:
0 评论:
0 赞:
0 阅读:
94
1 $("#grid").kendoGrid({ 2 ... 3 editable: { 4 mode: "popup", 5 template: kendo.template($("#editTemplate").html()), 6 //window: { 7 // title: "信息维护" ...
分类:
Windows开发 时间:
2019-11-19 11:19:46
收藏:
0 评论:
0 赞:
0 阅读:
240
在上一篇的基础下。用for循环以及数组来减少代码量#include <stdio.h> #include <stdlib.h> #include <time.h> struct t{ int z[3]; int num; int n[100]; }b[10050]; int stime=1; //数 ...
分类:
Windows开发 时间:
2019-11-19 11:09:58
收藏:
0 评论:
0 赞:
0 阅读:
95
DevExpress Winforms Controls 内置140多个UI控件和库,完美构建流畅、美观且易于使用的应用程序。无论是Office风格的界面,还是分析处理大批量的业务数据,DevExpress WinForms都能轻松胜任。DevExpress广泛应用于ECM企业内容管理、 成本管控、 ...
分类:
Windows开发 时间:
2019-11-19 11:08:56
收藏:
0 评论:
0 赞:
0 阅读:
86
```java final StreamExecutionEnvironment streamExecutionEnvironment = StreamExecutionEnvironment.getExecutionEnvironment(); /* * Filter */ DataStream ... ...
分类:
Windows开发 时间:
2019-11-19 10:53:00
收藏:
0 评论:
0 赞:
0 阅读:
105
1.关于shell脚本移植问题: 从windows 上写的脚本 移植到linux上执行会出现乱码,出现换行符^M 等问题。 出现乱码: 编码问题,windows 编码 为 gb18030 linux 编码为 utf8 解决方案: windows 下txt编写时,保存时,选择utf-8 即可, 出现换 ...
分类:
Windows开发 时间:
2019-11-19 10:18:40
收藏:
0 评论:
0 赞:
0 阅读:
75
//从上往下 #include <iostream> #include <algorithm> using namespace std; const int N = 510, INF = 1e9; int n; int a[N][N]; int f[N][N]; int main() { scanf ...
分类:
Windows开发 时间:
2019-11-19 09:09:17
收藏:
0 评论:
0 赞:
0 阅读:
109
//设上升序列的最后一个数字为第i个,那么就以第i-1个位分类标准, //i-1可以没有,也可以是在数组中下标为1,下标为2 //一直到下标为i-1的数字 #include <iostream> #include <algorithm> using namespace std; const int ...
分类:
Windows开发 时间:
2019-11-19 09:04:41
收藏:
0 评论:
0 赞:
0 阅读:
92
#include <iostream> #include <algorithm> using namespace std; const int N = 1010; int n, m; char a[N], b[N]; int f[N][N]; int main() { scanf("%d%d", & ...
分类:
Windows开发 时间:
2019-11-19 09:03:22
收藏:
0 评论:
0 赞:
0 阅读:
118
#include <iostream> #include <algorithm> using namespace std; const int N = 310; int n; int s[N];//前缀和 int f[N][N];//状态 int main() { scanf("%d", &n); ...
分类:
Windows开发 时间:
2019-11-19 09:02:55
收藏:
0 评论:
0 赞:
0 阅读:
113
api 调用发现错误 Mon Nov 18 23:04:31 CST 2019, RpcRetryingCaller{globalStartTime=1574089469858, pause=100, retries=35}, org.apache.hadoop.hbase.MasterNotRun ...
分类:
Windows开发 时间:
2019-11-19 00:43:21
收藏:
0 评论:
0 赞:
0 阅读:
839
Radware Alteon做radius认证,radius服务器用用windows server
分类:
Windows开发 时间:
2019-11-19 00:24:34
收藏:
0 评论:
0 赞:
0 阅读:
152
这个实例比较好,因此特此转载。说明了new和override的区别。 ...
分类:
Windows开发 时间:
2019-11-18 23:14:40
收藏:
0 评论:
0 赞:
0 阅读:
116
Ø 简介 在之前的 C# 消息队列之 RabbitMQ 基础入门 中介绍了 RabbitMQ 的基本用法,其实要更全面的掌握 RabbitMQ 这个消息队列服务,我们还需要掌握以下内容: 1. 轮询分发 2. 消息响应 3. 公平分发 4. 消息持久化 1. 轮询分发 默认情况下,RabbitMQ ... ...
分类:
Windows开发 时间:
2019-11-18 23:13:59
收藏:
0 评论:
0 赞:
0 阅读:
146
1、软件下载地址 https://graphviz.gitlab.io/_pages/Download/Download_windows.html 2、下载压缩包graphviz-2.38.zip 3、添加环境变量 4、应用举例 ...
分类:
Windows开发 时间:
2019-11-18 23:05:41
收藏:
0 评论:
0 赞:
0 阅读:
85