摘要: 0、Jmeter外观、语言设置 1、基准测试:用Jmeter模仿多个用户访问接口。 一个线程就相当于自己在浏览器请求一次接口,工具可以帮我我们模拟n个人访问。网站开发计划中的性能参数可以通过Jmeter进行验证,eg:某接口在指定参数的主机上要支持多少用户的同时访问;Ramp-up表示多久时间内启动 阅读全文
posted @ 2023-12-17 00:32 帅哥才 阅读(693) 评论(0) 推荐(0)
摘要: SQL中,delimiter命令的作用是定义sql语句的分隔符 sql中默认的语句分隔符是分号(分号后面的当成下一条语句) 写存储过程或函数等语句块时,中间会包含分号,所以语句块不能成为一个整体,执行的时候就会报错 所以,执行这样的语句块时,先用delimiter定义其他的符号作为分隔符,执行完语句 阅读全文
posted @ 2022-10-31 11:41 帅哥才 阅读(1886) 评论(0) 推荐(0)
摘要: 2贴心点餐系统 --架构思路:前端h5+web,后台:java+mysql+linux+tomcat+jdk8+redis+…; --现有功能的不足: 1依靠平台入驻,关注入驻店家数量,未聚焦到顾客个体; 2顾客看评价选则店铺后,在店内的活动只有简单的评价功能; 3不能为顾客提供细致,有关注度的服务 阅读全文
posted @ 2022-04-16 20:50 帅哥才 阅读(63) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> #define LEN sizeof(struct Student) //用结构体、内存函数,指针,常用数据类型实现一个动态链表 struct Student{ int sno; int name; int gender; s 阅读全文
posted @ 2022-04-16 20:40 帅哥才 阅读(222) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> #include <ctype.h> int main() { int longest_i(char * p); char str[1000]; gets(str);//输入 int max_i,i; max_i = lo 阅读全文
posted @ 2022-04-11 17:58 帅哥才 阅读(722) 评论(0) 推荐(0)
摘要: //求两个数的最大公约数 int a,b,t; scanf("%d%d", &a,&b); //保证a>b int sa = a,sb = b; if(b>a){ t = a; a = b; b = t; } while(a%b){ t = a%b; if(t){ a = b; b = t; } } 阅读全文
posted @ 2022-03-21 17:06 帅哥才 阅读(301) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> /* 一个整数的反置数指的是把该整数的每一位数字的顺序颠倒过来所得到的另一个整数。如果一个整数的末尾是以0结尾,那么在它的反置数当中,这些0就被省略掉了。比如说,1245的反置数54 阅读全文
posted @ 2022-03-20 23:50 帅哥才 阅读(87) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main(){ int i,j,k; //输出十行,ns表示上一行的数据,nx表示当前行的数据,ts表示计算当前行时的临时数据 int ns[11]={0},nx[11]={0},ts[11]={0}; //控制行数:0~9共十行 for (i = 0; 阅读全文
posted @ 2022-03-12 09:54 帅哥才 阅读(54) 评论(0) 推荐(0)
摘要: 打开git bash ssh -keygen -t rsa -C "[email protected]" //生产ssh密钥,会有两次可输入的地方,直接回车会使用默认的文件名 在C/User/username/.ssh下会生成两个文件 id_rsa 和 id_rsa.pub(公钥),将 id_rsa 阅读全文
posted @ 2019-06-26 19:18 帅哥才 阅读(432) 评论(0) 推荐(0)
摘要: 点击左上角文件-->新建文件 输入文件名加后缀,例如:a.html 然后鼠标点击空白处就ok了 阅读全文
posted @ 2018-12-03 09:52 帅哥才 阅读(1299) 评论(0) 推荐(0)