前言 这一篇,用到找偏移的第三个方法:日志;第四个方法:字符串;第五个方法:系统函数;第六个方法:第三方库。目标是收发文本消息。 一、发送消息 分析 1、发送信息的一般流程 1、界面上编辑消息 2、点击发送按钮 3、消息存入数据库 4、通过网络发送出去 2、可以切入的点 1、界面 2、数据库 3、网 ...
function Node(coef,expon) { this.coef = coef; // 系数 this.expon = expon; // 指数 this.next = null; } List.attach = function(node) { let current = this.he ...
分类:
其他好文 时间:
2020-06-27 10:09:38
阅读次数:
54
.div1 { display: inline-block; height: 300px; width: 500px; margin:30px; text-align: center border: 2px solid red; } .div2 { display: inline-block; he ...
分类:
其他好文 时间:
2020-06-27 00:01:19
阅读次数:
86
Jmeter安装后初次启动报错Invalid maximum heap size: -Xmx4096m 解决办法: 找到jmeter包的目录文件,如: E:\ST_test\jmeter\apache-jmeter-3.1\bin,编辑jmeter.bat文件,找到设置堆内存大小地方: set HE ...
分类:
其他好文 时间:
2020-06-26 23:53:02
阅读次数:
136
安装keepalived的相关依赖 下载所有依赖之后,将其上传到服务器,然后在依赖所在文件夹内执行rpm -Uvh --force *.rpm即可 安装keepalived tar -zxvf keepalived- cd keepalived ./configure --prefix=/usr/l ...
分类:
其他好文 时间:
2020-06-26 23:51:40
阅读次数:
235
classs Admin < activeRecord::Base delegate :firstname, :to => :user # 等价于 # firstname => user.firstname # delegate :firstname, :to => :user, :prefix = ...
分类:
其他好文 时间:
2020-06-26 18:04:07
阅读次数:
47
1 //链式链表c语言版 2 3 typedef struct Node //链式链表定义 4 { 5 struct Node* next; 6 int data; 7 }ListLink; 8 9 ListLink* ListInit()//链式链表初始化 10 { 11 ListLink* he ...
分类:
其他好文 时间:
2020-06-26 16:20:17
阅读次数:
41
Route::prefix('admin')->group(function (){ Route::get('/test1','Admin\AdminController@test1'); Route::get('/test2','Admin\AdminController@test2'); }); ...
分类:
其他好文 时间:
2020-06-26 14:46:03
阅读次数:
58
7-4 Index of Popularity (30分) The index of popularity (IP) of someone in his/her circle of friends is defined to be the number of friends he/she has i ...
分类:
其他好文 时间:
2020-06-26 14:39:43
阅读次数:
106
rfc/use_gwstart = 1 the external RFC server is started through the local gateway. rfc/use_gwstart = 0 he default value of the profile parameter is 0, ...
分类:
其他好文 时间:
2020-06-26 01:08:59
阅读次数:
100