错误状态:nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) 1.先使用ps -e | grep nginx查看是否已经启动了nginx 2.如果没有的话则按照提示,查看0.0.0.0:80端口谁占用了,使用 ...
分类:
其他好文 时间:
2020-04-16 15:13:03
阅读次数:
57
Car model and year: GT - 2006 Nissan 350Z RevUp DE Note : GT model of 350z has a traction control whereas the base models don't (apparently). So, if y ...
分类:
编程语言 时间:
2020-04-16 15:10:21
阅读次数:
152
哈希表(散列表) 一、概述 根据设定的 哈希函数H(key) 和 处理冲突的方法 将一组关键字影像到一个有限的连续的地址集(区间)上,并以关键字在地址集中的“像”作为记录在表中的存储位置,这种表便成为 哈希表 ,这一映像过程称为哈希造表或 散列 ,所得存储位置称 哈希地址 或 散列地址 。 上面所提 ...
分类:
其他好文 时间:
2020-04-16 00:17:33
阅读次数:
90
Mysql导入sql文件可能出现的问题 1、可能出现的错误 本地导入sql文件时,出现'MySQL server has gone away'的错误 2、问题分析: 'MySQL server has gone away'的问题意思就是指client和MySQL server之间的链接断开了。造成这 ...
分类:
数据库 时间:
2020-04-15 21:19:42
阅读次数:
278
由于全球IPv4地址越来越少、越来越贵,因此大到一个组织,小到一个家庭一个人都很难获得公网IP地址,所以只能使用内网地址,从而和别人共享一个公网IP地址。在这种情况下,NAT技术诞生。 翻译 NAT(Network Address Translation:网络地址转换)是将IP 数据包头中的IP 地 ...
分类:
其他好文 时间:
2020-04-15 10:53:17
阅读次数:
156
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.NetworkInformation;using System.Net.Sockets;using Sy ...
1.首先导入组件 import Vue from 'vue'; import { AddressEdit } from 'vant'; Vue.use(AddressEdit); 使用组件 <van-address-edit :area-list="areaList" show-postal sho ...
分类:
其他好文 时间:
2020-04-14 19:02:37
阅读次数:
387
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BST) i ...
分类:
其他好文 时间:
2020-04-14 18:37:40
阅读次数:
59
Java介于编译型语言和解释型语言之间。编译型语言如C、C++,代码是直接编译成机器码执行,但是不同的平台(x86、ARM等)CPU的指令集不同,因此,需要编译出每一种平台的对应机器码。解释型语言如Python、Ruby没有这个问题,可以由解释器直接加载源码然后运行,代价是运行效率太低。而Java是 ...
分类:
编程语言 时间:
2020-04-14 18:34:03
阅读次数:
341
<body> <!-- 判断数组中是否存在60这个元素 返回布尔类型 --> <script type="text/javascript"> var arr=[1,2,5,6,4,8,4,4,4,5] function has(arr,n){ //判断数组里面有没有n这个数据 //先假设数组里面没有 ...
分类:
编程语言 时间:
2020-04-14 18:32:45
阅读次数:
167