1.下载安装postman 2.调试一个接口 3.保存该接口 4. 保存完之后点击左侧 collections 可以看到刚才新建的 <测试1> 文件夹 以及里面保存的 <测试接口1> 如图 5.运行 6.点击运行之后出现运行设置页面 可以选择时间间隔 运行次数等 7. 接下来是多接口批量测试,重复上 ...
分类:
其他好文 时间:
2020-08-26 17:20:01
阅读次数:
43
1 . 创建Protobuf序列化 工具类ProtobufExchang.cs, 需要添加应用protobuf-net.dll 组件 using ProtoBuf;using System;using System.Collections.Generic;using System.IO;using ...
1. XML序列化实例演示 using System;using System.Collections.Generic;using System.Diagnostics;using System.IO;using System.Linq;using System.Text;using System. ...
脚本是附加在游戏物体上用于定义游戏对象行为的指令代码 附加到游戏物体的脚本类必须从MonoBehaviour类继承 脚本初始化: using System.Collections; using System.Collections.Generic; using UnityEngine; public ...
多说无益直接代码伺候。 ModelAuto.ttinclude,为每个表单独生成实体文件。 <#@ assembly name="System.Core"#> <#@ assembly name="EnvDTE"#> <#@ import namespace="System.Collections. ...
分类:
Web程序 时间:
2020-08-12 15:57:53
阅读次数:
79
我们很多时候在系统报错,抛异常的时候要提前预警,这个时候邮件是必不可少的。 第一步:首先确定一下,你所使用的方式,是通过外部邮箱(比如QQ还是163)还是内部邮箱 先新建一个model using System; using System.Collections.Generic; using Sys ...
分类:
Web程序 时间:
2020-08-11 15:57:26
阅读次数:
98
1.算法面试题:一个List,要求删除里面的男生,不用Linq和Lamda,求各种解,并说明优缺点! using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; na ...
分类:
Web程序 时间:
2020-08-10 14:29:55
阅读次数:
80
package LeetCode_582 import java.util.* import kotlin.collections.ArrayList import kotlin.collections.HashMap /** * 582.Kill Process * (Prime) *Given ...
分类:
其他好文 时间:
2020-08-10 09:25:07
阅读次数:
54
list arrayList 多线程不安全 //java.util.ConcurrentModificationException 解决办法 * 1,new Vector<>();并发性能下降很大(所有操作都加锁) * 2,Collections.synchronizedList(arrayList ...
分类:
其他好文 时间:
2020-08-07 12:36:37
阅读次数:
77
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; 6 using BLL; 7 using MODEL; 8 9 n ...
分类:
其他好文 时间:
2020-08-02 22:21:21
阅读次数:
83