- 博客(165)
- 收藏
- 关注
原创 <jQuery-常用方法-1>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style type="text/css"> div { height: 80.
2020-12-08 23:42:47
116
原创 <jQery-获取元素方式>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <div class="demo" id=.
2020-12-08 23:41:14
145
原创 <生产者消费者模型-C线程信号量机制实现>
#include <stdio.h>#include <unistd.h>#include <semaphore.h>#include <pthread.h>#include <stdlib.h>#include <string.h>#define max 5int queue[max];//产品存取缓冲区sem_t blank_num;sem_t product_num;//定义缓冲区空区数量和生产产品数量voi
2020-12-03 11:13:26
251
原创 <正则表达式-精确匹配>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/ja.
2020-12-03 11:12:15
4912
原创 <arguments对象模拟重载>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-30 23:31:24
138
原创 <json字符串与对象转换>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/ja.
2020-11-30 23:30:28
96
原创 <json对象>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/ja.
2020-11-30 23:29:05
99
原创 <typeof总结>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-30 23:27:59
177
原创 <对象-简介>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-30 23:27:23
247
原创 <数组-数组与闭包>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-30 23:26:56
181
原创 <数组-数组方法>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <h2>Con
2020-11-30 23:26:16
188
原创 <数组-队列操作>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script ty
2020-11-30 23:25:37
83
原创 <数组-栈操作>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script ty
2020-11-30 23:25:10
82
原创 <数组-数组遍历>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script ty
2020-11-30 23:22:56
84
原创 <数组-数组的介绍>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script ty
2020-11-29 23:13:07
131
原创 <函数-全局变量>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-29 23:12:09
118
原创 <函数-创建IIFE(立即调用函数表示式)>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-29 23:11:30
117
原创 <函数-声明提升>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <!-- 词法分析
2020-11-29 23:10:16
133
原创 <函数-实现菲波那切数列>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-29 23:08:34
256
原创 <进程的同步与互斥>
1 .进程同步写进程->管道->读进程读进程与写进程并发进行,存在异步性如果想要解决这种异步性.让运行按照我们预期的进行保证’写进程在读进程发生之前’.同步 .也叫直接制约关系,它是指为完成某种任务而建立的 两个或多个进程,这些进程因为需要在某些位置上 协调它们的工作次序而产生的制约关系。进程间的直接制约关系就 是源于它们之间的相互合作2 进程互斥并发执行的进程需要共享使用一些系统资源(内存 打印机 摄像头)互斥共享: 某一个时间段只允许一个进程访问该资源
2020-11-29 23:06:47
183
原创 <JavaScript基础-简单数据类型&parselent转换>
!](https://img-blog.csdnimg.cn/20201126220957481.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80NTU0MDk2NA==,size_16,color_FFFFFF,t_70#pic_center)
2020-11-26 22:11:05
494
原创 <JavaScript基础-Math对象>
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title></head><body> <script type="text/jav
2020-11-26 20:33:01
91
原创 哈夫曼树的应用-哈夫曼编码>
#include<stdio.h>#include<string.h>#include<stdlib.h>//树结点定义typedef struct { int weight; int parent; int lchild; int rchild;}HTNode,*HuffmanTree;static char N[100];//用于保存正文//哈弗曼编码,char型二级指针typedef char **Huffma
2020-11-26 13:20:06
352
原创 <web渗透-文件包含漏洞利用>
(1) .读取敏感文件利用文件包含漏洞读取任意文件,读取文件的时候有利用条件@目标主机文件存在 (目标文件的绝对路径,相对路径)@具有文件的可读权限提交参数 绝对路径 ?path=c:\路径\ 尝试相对路径 ?path=..\..\..\..\..\..\路径\ (2) .直接包含图片木马 将木马信息写入图片附加信息中 图片附加信息 版权等. <?php @eval($_REQUEST[777])?> 使用菜刀连接(3
2020-11-25 22:34:35
530
原创 <web渗透-问件包含漏洞>
(1) .概述程序开发人员通常会把可重复使用的函数写在单个文件中在使用某个函数的时候,直接调用此文件,无需再次编写,这种调用文件的过程称为文件包含程序开发人员都希望代码更加灵活,所有通常会把被包含的文件设置为变量,进行动态调用,正由于这阵灵活性导致客户端可以调用任意文件,造成文件包含漏洞(2) .php中文件包含函数 区别include() 文件包含失败时会产生警告,脚本继续执行include_once() 与inlude()
2020-11-25 22:33:32
113
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅
1